body {
    margin: 0;
    padding: 0;
}

.login-section {
    min-height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: no-repeat center center;
    background-size: cover;
    font-family: Arial, sans-serif;
}

.login-container {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
}

/* Left */
.login-left {
    flex: 0 0 30%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.login-left-content {
    max-width: 360px;
    position: absolute;
    right: 5%;
    top: 10%;
}

.login-logo {
    width: 180px;
    margin-bottom: 10px;
}

.login-left p {
    font-size: 16px;
    line-height: 1.6;
}

.login-left .highlight {
    font-weight: bold;
}

.login-image {
    width: clamp(400px, 40vw, 550px);
    position: absolute;
    right: clamp(-100px, -8vw, -120px);
    bottom: 30px;
}

/* Right */
.login-right {
    flex: 0 0 70%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px 0 0 40px;
}

.login-form-wrapper {
    width: 100%;
    max-width: 630px;
    position: relative;
    height: 100%;
}

.signup-link {
    margin-bottom: 200px;
    margin-top: 20px;
    text-align: right;
    font-size: 14px;
}

    .signup-link a {
        color: #00a9b7;
        font-weight: 600;
    }

.login-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: left;
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 6px;
        color: #42919F;
    }

    .form-group input {
        width: 100%;
        padding: 12px;
        border: 1px solid #42919F;
        border-radius: 6px;
        font-size: 14px;
    }

.password-group {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 36px;
    cursor: pointer;
}

    .toggle-password svg {
        width: 20px;
        fill: #42919F;
    }

#eyeSlashIcon {
    display: none;
}

/* Options */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 13px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 6px;
}

.forgot-link {
    color: #e63946;
    text-decoration: none;
}

/* Privacy note */
.privacy-note {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #666;
    text-align: left;
    line-height: 1.5;
}

    .privacy-note a {
        color: #00a9b7;
    }

/* Button */
.btn-login {
    width: 100%;
    padding: 14px;
    background: #00a9b7;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

    .btn-login::after {
        font-family: "Ionicons";
        content: "\f284";
        color: white;
        margin-left: 8px;
        margin-top: 0;
    }

    /* Responsive for screen < 1200px */
    @media (max-width: 1100px) {
        .login-left {
        display: none;
    }

    .login-right {
        flex: 0 0 100%;
        border-radius: 0;
/*        background-color: transparent;*/
    }

    .login-form-wrapper {
        margin: 0 auto;
        padding: 40px 20px;
    }
}