/* Wspólne style dla formularzy autentykacji (login, signup, password reset) */
.auth-card {
    margin-top: 50px;
    margin-bottom: 50px;
}

.auth-card .card {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.auth-card .card-header {
    background: #4A90E2;
    color: white;
    padding: 2rem;
    border: none;
}

.auth-card .card-header.error {
    background: #dc3545;
}

.auth-card .card-header.success {
    background: #28a745;
}

.auth-card .card-header h3 {
    margin: 0;
    font-weight: 600;
    font-size: 1.75rem;
}

.auth-card .card-body {
    padding: 2.5rem;
}

.auth-card .form-control,
.auth-card input[type="text"],
.auth-card input[type="email"],
.auth-card input[type="password"] {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.auth-card .form-control:focus,
.auth-card input[type="text"]:focus,
.auth-card input[type="email"]:focus,
.auth-card input[type="password"]:focus {
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
    outline: none;
}

.auth-card .btn-primary {
    background: #4A90E2;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    width: 100%;
}

.auth-card .btn-primary:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.auth-card .btn-secondary {
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    width: 100%;
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.auth-links a {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.auth-links a:hover {
    color: #3a7bc8;
    text-decoration: underline;
}

.social-login {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.info-text {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.success-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

/* Responsywność */
@media (max-width: 576px) {
    .auth-card {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .auth-card .card-header {
        padding: 1.5rem;
    }

    .auth-card .card-body {
        padding: 1.5rem;
    }

    .auth-card .card-header h3 {
        font-size: 1.5rem;
    }
}

