﻿/* Auth Layout */
.auth-body {
    background: var(--background);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding-top: 0;
}

.auth-wrapper {
    width: 100%;
    max-width: 700px;
    padding: 2rem;
}

.auth-header {
    margin-bottom: 2rem;
}

.auth-logo {
    width: 90px;
    height: auto;
}

.brand-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text);
}

.auth-content {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.auth-footer small {
    color: var(--muted);
}

/* Make logo and content stack nicely on small screens */
@media (max-width: 576px) {
    .auth-wrapper {
        padding: 1.25rem;
    }

    .auth-content {
        padding: 1.5rem;
    }
}

/* Auth Page Layout */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 60px);
    padding: 2rem;
    background: var(--background);
}

.auth-form .tile {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 700px;
    width: 100%;
    box-shadow: var(--shadow);
}

/* Headings */
.hero-title {
    font-size: 1.75rem;
    font-weight: 700;
}

/* Inputs */
.form-floating label {
    color: var(--muted);
}

.form-control {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: #fff;
}

    .form-control:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 0.2rem rgba(223,190,111,0.25);
    }

.btn {
    border-radius: 2rem;
}

/* Buttons */
.custom-btn, .btn-primary {
    background-color: var(--accent);
    border: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

    .custom-btn:hover, .btn-primary:hover {
        background-color: var(--accent-dark);
    }

/* Text */
.text-muted {
    color: var(--muted);
}
