/* Guest Layout CSS */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --accent-color: #0dcaf0;
    --success-color: #198754;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f7fa;
    color: #333;
}

.guest-page-wrapper {
    position: relative;
    min-height: 100vh;
}

.guest-background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(135deg, rgba(13, 110, 253, 0.03) 25%, transparent 25%),
        linear-gradient(225deg, rgba(13, 110, 253, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, rgba(13, 110, 253, 0.03) 25%, transparent 25%),
        linear-gradient(315deg, rgba(13, 110, 253, 0.03) 25%, transparent 25%);
    background-position: 40px 0, 40px 0, 0 0, 0 0;
    background-size: 80px 80px;
    z-index: -1;
}

/* Card styling */
.card {
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Button styling */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.15);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-outline-primary.active {
    background-color: var(--primary-color);
    color: white;
}

/* Form styling */
.form-control {
    border: 1px solid #dee2e6;
    padding: 0.6rem 0.75rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Form check styling */
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Alert styling */
.alert {
    border-radius: 0.5rem;
}

/* Media Queries */
@media (max-width: 576px) {
    .login-card {
        margin: 0 15px;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.card {
    animation: fadeIn 0.5s ease-out forwards;
}