/**
 * Authentication pages styles
 * Shared styles for login, registration, forgot password, reset password,
 * activation success, and error pages.
 *
 * Copyright (c) 2024, 2025, 2026 Pavel Brychta
 * Licensed under the MIT License.
 */

body.auth-page {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    min-height: 100vh;
    padding: 1rem;
}

body.auth-page .container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    max-width: 450px;
    width: 100%;
    margin: auto;
}

.auth-card.auth-card-wide {
    max-width: 500px;
}

.auth-card.auth-card-error {
    max-width: 600px;
    text-align: center;
}

.app-logo {
    font-size: 4rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.app-logo-img {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* Success page specific styles */
.success-icon {
    font-size: 5rem;
    color: #198754;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Error page specific styles */
.error-icon {
    font-size: 5rem;
    color: #dc3545;
    margin-bottom: 1.5rem;
}

.error-code {
    font-size: 4rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 1rem;
}
