/* assets/css/auth.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    --brand-teal: #0e3c45;
    --brand-green: #10b981;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    min-height: 600px;
    display: flex;
}

/* Left Side (Image) */
.auth-visual {
    flex: 1;
    background: linear-gradient(135deg, #0e3c45 0%, #115e5c 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    color: white;
}

.auth-visual-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 20%);
    pointer-events: none;
}

/* Right Side (Form) */
.auth-form-container {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
}

.form-control:focus {
    background-color: white;
    border-color: var(--brand-teal);
    box-shadow: 0 0 0 4px rgba(14, 60, 69, 0.1);
}

.btn-auth {
    background-color: var(--brand-teal);
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    border: none;
    transition: background 0.2s;
}

.btn-auth:hover {
    background-color: #09252b;
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
        max-width: 90%;
        min-height: auto;
    }
    .auth-visual {
        display: none; /* Hide image on mobile to save space */
    }
    .auth-form-container {
        padding: 40px 20px;
    }
}