/**
 * AutoM - Bejelentkezés stílusok
 */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 1rem;
}

.auth-container {
    width: 100%;
    max-width: 420px;
}

.auth-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}

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

.auth-header .auth-logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 1.5rem;
}

.auth-header h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.25rem;
}

.auth-header p {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

/* Input group ikonok */
.auth-card .input-group-text {
    background-color: #f8f9fa;
    border-right: none;
}

.auth-card .input-group .form-control {
    border-left: none;
}

.auth-card .input-group .form-control:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

.auth-card .input-group:focus-within .input-group-text {
    border-color: #86b7fe;
}

.auth-card .input-group:focus-within .form-control {
    border-color: #86b7fe;
}

/* Link stílus */
.auth-card a {
    color: #4a90d9;
    text-decoration: none;
    font-weight: 500;
}

.auth-card a:hover {
    text-decoration: underline;
}

/* Gomb */
.auth-card .btn-primary {
    background: linear-gradient(135deg, #4a90d9 0%, #1a1a2e 100%);
    border: none;
    padding: 0.75rem;
    font-weight: 500;
}

.auth-card .btn-primary:hover {
    opacity: 0.9;
}

/* Reszponzív */
@media (max-width: 576px) {
    .auth-card {
        padding: 1.5rem;
    }

    .auth-header i {
        font-size: 2.5rem;
    }

    .auth-header h1 {
        font-size: 1.75rem;
    }
}
