/* Base */
.auth-body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f8f5f2;
}

/* Layout */
.auth-layout {
    display: flex;
    height: 100vh;
}

/* LEFT */
.auth-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.auth-content {
    max-width: 420px;
    width: 100%;
}

/* Logo */
.auth-logo {
    display: inline-block;
    margin-bottom: 30px;
}

/* Texte */
.auth-text h1 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.auth-text p {
    color: #6c757d;
    margin-bottom: 30px;
}

/* Card formulaire */
.auth-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Inputs */
.form-control {
    border-radius: 10px;
    border: 1px solid #eee;
    padding: 14px;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* Bouton */
.auth-btn {
    background-color: #1a1a1a;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    transition: all 0.2s ease;
}

.auth-btn:hover {
    opacity: 0.9;
}

/* RIGHT (image) */
.auth-right {
    flex: 1;
    background: var(--secondary-dark);
}

/* Responsive */
@media (max-width: 992px) {
    .auth-layout {
        flex-direction: column;
    }

    .auth-right {
        display: none;
    }

    .auth-left {
        height: 100vh;
    }
}