﻿

/* ---- Page background gradient ---- */
.authentication-area {
    min-height: 100vh;
    background: linear-gradient(135deg, #d9a0c8 0%, #b8c8e8 50%, #a0c4d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* ---- Outer card ---- */
.login-card {
    /*        display: flex;



        width: 100%;
        max-width: 900px;
        min-height: 480px;*/
    box-shadow: 0 8px 40px rgba(0,0,0,0.13);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

/* ---- Left panel ---- */
.login-left {
    flex: 1;
    padding: 80px 48px 100px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.login-welcome {
    font-size: 13px;
    color: black;
    margin-bottom: 4px;
    font-weight: 400;
}

.login-title {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin-bottom: 30px;
    line-height: 1.3;
}

/* ---- User type buttons ---- */
.ut-label {
    font-size: 13px;
    color: #555;
    margin-bottom: 12px;
    text-align: center;
    margin-right: 80%;
}

.ut-btn-group {
    display: flex;
    gap: 10px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.ut-btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid #222;
    background: #fff;
    color: #222;
    transition: all 0.15s ease;
    white-space: nowrap;
    outline: none;
}

    .ut-btn.active {
        background: #F5A623;
        border-color: #F5A623;
        color: #111;
    }

    .ut-btn:hover:not(.active) {
        background: #f5f5f5;
    }

/* ---- Form fields ---- */
.login-form-section {
    display: none;
}

    .login-form-section.active {
        display: block;
    }

.login-field {
    margin-bottom: 16px;
}

.login-field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
}

.login-label {
    font-size: 13.5px;
    color: #222;
    font-weight: 600;
}

.login-forgot {
    font-size: 12px;
    color: #aaa;
    cursor: pointer;
    text-decoration: none;
}

    .login-forgot:hover {
        color: #555;
        text-decoration: none;
    }

.login-input-wrap {
    position: relative;
}

    .login-input-wrap input,
    .login-left .form-control {
        width: 100%;
        padding: 12px 42px 12px 14px;
        border: 1.5px solid #e8e5c0 !important;
        border-radius: 8px !important;
        font-size: 14px;
        color: #333;
        background: #FAFAD2 !important;
        outline: none;
        transition: border 0.15s;
        box-shadow: none !important;
    }

        .login-input-wrap input:focus,
        .login-left .form-control:focus {
            border-color: #F5A623 !important;
            box-shadow: none !important;
        }

        .login-input-wrap input::placeholder,
        .login-left .form-control::placeholder {
            color: #bbb;
            font-size: 13px;
        }

.login-eye-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #bbb;
    font-size: 18px;
    line-height: 1;
    background: none;
    border: none;
    padding: 0;
}

    .login-eye-btn:hover {
        color: #888;
    }

/* ---- Login button ---- */
.login-btn-row {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.login-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 52px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.15s;
}

    .login-submit-btn:hover {
        background: #333;
    }

/* ---- Signup text ---- */
.login-signup-text {
    text-align: center;
    font-size: 12.5px;
    color: #aaa;
    margin-top: 18px;
}

    .login-signup-text a {
        color: #F07030;
        font-weight: 600;
        text-decoration: none;
    }

        .login-signup-text a:hover {
            text-decoration: underline;
        }

/* ---- Right panel ---- */
.login-right {
    width: 380px;
    background: #fecd46;
    position: relative;
    overflow: visible;
    flex-shrink: 0;
}

.login-illus-scene {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateX(-36%) translateY(-50%);
    display: flex;
    align-items: flex-end;
    gap: 0;
}

    .login-illus-scene .scene-char {
        height: 37vh;
        width: 404px;
        position: relative;
        z-index: 1;
        margin-left: -25px;
    }

    .login-illus-scene .scene-cactus {
        position: relative;
        z-index: 0;
        pointer-events: none;
        height: 401px;
        width: 291px;
        z-index: 1;
        margin-left: -65px;
    }


/* ---- Responsive ---- */
@media (max-width: 768px) {
    .login-right {
        display: none;
    }

    .login-left {
        padding: 40px 28px;
    }

    .ut-btn-group {
        flex-direction: column;
    }

    .ut-btn {
        width: 100%;
        text-align: center;
    }
}

