@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

*,
*::before,
*::after {
    font-family: 'Montserrat', sans-serif !important;
}

.auth-page {
    min-height: 100vh;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04), 0 4px 12px rgba(17, 24, 39, 0.04);
    background: #ffffff;
}

.auth-brand {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-brand .master-brand-mark {
    align-items: center;
    margin-bottom: 0.75rem;
}

.auth-brand .master-brand-logo {
    max-width: 220px;
    margin: 0 auto;
}

.auth-card .form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #374151;
}

.auth-card .form-control {
    border-color: #e5e7eb;
    border-radius: 8px;
    padding: 0.625rem 0.875rem;
    min-height: 44px;
    font-size: 16px;
}

.auth-card .btn {
    min-height: 44px;
}

.auth-card .form-control:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.auth-card .btn-primary {
    background: #6366f1;
    border-color: #6366f1;
    font-weight: 600;
    border-radius: 8px;
}

.auth-card .btn-primary:hover {
    background: #4f46e5;
    border-color: #4f46e5;
}
