.section1{
    width: 100%;
    height: 100%;
    background-image: url('/images/register-bg.jpg');
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
}
.section1-top-blank{
    width: 100%;
    height: 120px;
}
.section1-end-blank{
    width: 100%;
    height: 50px;
}

.section1-cont{
    width: 60%;
    height: 100%;
    margin-right: 20%;
}

.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;
    margin-top: 7%;
}
  .login-cont {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 85vh;
        }
        .form-container {
            width: 100%;
            line-height: 40px;
            max-width: 400px;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .section1 h2 {
            text-align: center;
            color: #333;
            text-align: center;
            font-family: 'Cairo', sans-serif;
        }
        label {
            font-weight: bold;
            margin-bottom: 8px;
            display: block;
        }
        input {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
            box-sizing: border-box;
        }
        .password-group {
            position: relative;
        }
        .forgetpassword{
            position: absolute;
            margin-top: -1.5%;
            margin-right: 0.5%;
            color: black;
            font-size: 11px;
            font-weight: 900;
            font-family: 'Cairo', sans-serif;
            opacity: 0.4;
            text-decoration: none;
        }

        .forgetpassword:hover{
            text-decoration: underline;
        }
        .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;
        }
        .login-btn {
            width: 100%;
            background-color: #8bc34a;
            color: white;
            border: none;
            padding: 12px;
            font-size: 18px;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .login-btn:hover {
            background-color: #7cb342;
        }
        .signup-link {
            text-align: center;
            color: black;
            margin-top: 5%;
            font-family: 'Cairo', sans-serif;
            font-size: 18px;
        }
        .signup-link a {
            color: #668c0a;
            text-decoration: none;
            font-weight: bold;
        }
        .signup-link a:hover {
            text-decoration: underline;
        }

        .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;
        }


        /* The modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */
    padding-top: 100px;
  }
  
  /* Modal content */
  .modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 60px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
  }
  
  /* The close button */
  .close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close-btn:hover,
  .close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  #submitEmail{
    width: 150px;
    height: 40px;
    background-color: #668c0a;
    border: none;
    color: white;
    font-family: 'Cairo', sans-serif;
    font-weight: 800;
  }
  