.login-container {
    display: flex;
    height: 100vh;
    background-color: #ffffff;
}
.login-image {
    flex: 1.2;
    overflow: hidden;
    border-radius: 0 2rem 2rem 0;
}

.side-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
    border-radius: 4rem 0 0 4rem;
}


.login-form {
    flex: 1;
    display: flex;
    justify-content: center; 
    align-items: center;     
    padding: 2rem;
}

.logo-title,
.subtitle,
form {
    width: 100%;
    max-width: 420px; 
    align-self: flex-start; 
}

.logo-title {
    width: 300px; 
    margin-bottom: 0.5rem;
    align-self: flex-start;
}
.subtitle {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2rem;
    color: #000000;
    font-size: 1.75rem;
    text-align: left;
    font-weight: 500; 
}
.form-content {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.input-field {
    width: 100%;
    max-width: 420px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    outline: none;
    transition: border-color 0.3s;
}

.input-field:focus {
    border-color: #f59e0b;
}
.input-label {
    display: block;
    margin-bottom: 0.3rem; 
    
}

.password-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.1rem;
}

.forgot-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.7rem;
}

.forgot-link:hover {
    text-decoration: underline;
}


.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    width: 100%;
}

.options label {
    font-size: 0.7rem;
    color: #000000;
    font-weight: 400;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.remember-checkbox {
    width: 14px;
    height: 14px;
    accent-color: #fbbf24;
    border-radius: 4px;
    margin-right: 0.5rem;
    vertical-align: middle;
    cursor: pointer;
}

.login-button {
    width: 100%;
    padding: 0.75rem;
    background-color: #fbbf24;
    color: black;
    font-weight: bold;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #f59e0b;
}


.register-link {
    text-align: center;
    margin-top: 1rem;
    color: #000000;
    font-size: 1rem;
}

.register-link a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: bold;
}

.register-link a:hover {
    text-decoration: underline;
}

.bee-image {
    position: absolute;
    bottom: 15px; 
    left: 50%;
    transform: translateX(-50%) scaleX(-1);
    width: 230px; 
    height: auto;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

