.section1{
    width: 100%;
    height: 100%;
    background-image: url('/images/register-bg.jpg');
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 1%;
}
.section1-top-blank{
    width: 100%;
    height: 50px;
}
.section1-cont{
	display: grid;
  	grid-template-columns: repeat(2, 1fr);
  	width: 80%;
  	margin-top: 0%;
  	margin-right: 10%;
  	gap:100px;
}

.section1-card{
    width: 100%;
    height: 100%;
}

.section1-card h1{
    color: white;
    font-size: 50px;
    font-weight: 800;
    font-family: 'Cairo', sans-serif;
    margin-top: 20%;
}

.section1-card p{
    color: white;
    font-family: 'Cairo', sans-serif;
    margin-top: -6%;
    opacity: 0.8;
    font-size: 18px;
    line-height: 40px;
}

.section1-card ul{
    list-style: none;
    font-family: 'Cairo', sans-serif;
    line-height: 60px;
    margin-right: -4%;
    margin-top: 5%;
}
.section1-card ul li{
    color: white;
    font-weight: 800;
}

.section1-card ul li .fa-solid{
    color: #739d0d;
    font-size: 18px;
}




.register-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.form-container {
    width: 100%;
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.section1 h2 {
    text-align: center;
    color: #333;
    font-family: 'Cairo', sans-serif;
}
.section1-top-line{
    width: 100%;
    height: 1px;
    background-color: black;
    opacity: 0.2;
}
.section1-end-line{
    width: 100%;
    height: 1px;
    background-color: black;
    opacity: 0.2;
}
label {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
}
.section1 input, select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}
.phone-group {
    display: flex;
    gap: 10px;
}
.phone-group select {
    width: 35%;
}
.phone-group input {
    width: 65%;
    height: 46px;
}
.password-group {
    position: relative;
}
.password-group input {
    width: 100%;
}
.toggle-password {
    position: relative;
    left: 10px;
    top: 35%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #777;
    margin-right: 3%;
    opacity: 0.5;
}
.register-btn {
    width: 100%;
    background-color: #8bc34a;
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.register-btn:hover {
    background-color: #7cb342;
}
.google-btn {
    border: 1px solid #dedede;
    padding: 15px 15px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    margin-top: 20px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: .5s ease;
}
.google-btn img{
    width: 20px;
}
.google-btn span{
    font-weight: bolder;
    font-size: 17px;
    color: #0b0b0b;
}

.google-btn:hover {
    background-color: #dedede;
}

.login-link {
    text-align: center;
    color: black;
    margin-top: 5%;
    font-family: 'Cairo', sans-serif;

}
.login-link a {
    color: #668c0a;
    text-decoration: none;
    font-weight: bold;
}
.login-link a:hover {
    text-decoration: underline;
}

.section1-end-blank{
    width: 100%;
    height: 50px;
}