﻿body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

/* FULL PAGE */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

/* MAIN CARD */
.auth-card {
    width: 1100px;
    height: 680px;
    display: flex;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12), 0 5px 15px rgba(0,0,0,0.08);
}

/* LEFT SIDE */
.auth-left {
    width: 50%;
    position: relative;
    overflow: hidden;
    background: #1b5e20;
}

.auth-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(27, 94, 32, 0.85), rgba(76, 175, 80, 0.3) );
    z-index: 1;
}

.left-content {
    position: absolute;
    bottom: 60px;
    left: 50px;
    z-index: 2;
    color: white;
}

    .left-content h1 {
        font-size: 52px;
        font-weight: 700;
        letter-spacing: 4px;
        margin-bottom: 10px;
    }

    .left-content p {
        font-size: 18px;
        opacity: 0.9;
    }

/* RIGHT SIDE */
.auth-right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
}

/* FORM */
.form-box {
    width: 75%;
    text-align: center;
}

    .form-box h2 {
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #1b5e20;
    }

.sub-text {
    color: #4e944f;
    margin-bottom: 40px;
    font-size: 15px;
}

/* INPUTS */
.form-group {
    margin-bottom: 22px;
    text-align: left;
}

    .form-group label {
        font-weight: 500;
        margin-bottom: 8px;
        display: block;
        color: #2e7d32;
    }

.auth-input {
    height: 55px;
    border-radius: 14px;
    border: 1px solid #c8e6c9;
    padding-left: 18px;
    font-size: 15px;
    transition: 0.3s ease;
    box-shadow: none !important;
}

    .auth-input:focus {
        border-color: #43a047;
        transform: translateY(-1px);
        box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.15) !important;
    }

/* REMEMBER */
.remember-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
    color: #2e7d32;
}

/* BUTTON */
.auth-btn {
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #43a047, #1b5e20);
    color: white;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

    .auth-btn:hover {
        background: linear-gradient(135deg, #388e3c, #145a1a);
        transform: translateY(-2px);
    }

/* LINKS */
.auth-links {
    margin-top: 28px;
    text-align: center;
}

    .auth-links a {
        text-decoration: none;
        color: #1b5e20;
        font-weight: 500;
        transition: 0.3s;
    }

        .auth-links a:hover {
            color: #43a047;
        }

/* RESPONSIVE */
@media(max-width: 900px) {

    .auth-card {
        flex-direction: column;
        height: auto;
        width: 95%;
    }

    .auth-left,
    .auth-right {
        width: 100%;
    }

    .auth-left {
        height: 280px;
    }

    .form-box {
        width: 85%;
        padding: 50px 0;
    }
}
