
    * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #333;
}

.login-container {
    display: flex;
    min-height: 100vh;
    flex-wrap: wrap;
}

.login-form, .login-image {
    flex: 1;
    min-width: 300px;
}

.form-inner {
    max-width: 350px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}

.logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 150px;
}


h2 {
    text-align: center;
    margin-bottom: 5px;
}


.welcome-text {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
}

label {
    display: block;
    margin-top: 15px;
    font-weight: 500;
}

.input-group {
    position: relative;
}

input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.password-field .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.btn-login {
    width: 100%;
    background: rgb(17, 17, 160);
    color: #fff;
    padding: 10px;
    margin-top: 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.btn-google {
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    margin-top: 10px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.signup-text {
    text-align: center;
    margin-top: 15px;
}

.login-image {
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.forgot-password {
    text-align: right;
    margin-top: 10px;
}

.forgot-password a {
    color: blue;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password a:hover {
    text-decoration: underline;
}

/* .image-text {
    background: #0f5132;
    color: #fff;
    padding: 20px;
} */

.image-text h2 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #fff;
    font-weight: 1000;
}


.login-image {
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #fff;
    padding: 30px;
    background: linear-gradient(to top, rgba(3, 50, 177, 0.95), rgba(4, 76, 231, 0.904), transparent);
}

.password-container {
    position: relative;
    width: 250px;
  }
  .password-container input {
    width: 100%;
    padding-right: 35px;
  }
  .password-container i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }
    .login-image {
        order: 2;
    }
}

