/* Global Styles */
body {
    background-color: #f4f7f6;
    font-family: 'Inter', sans-serif;
    color: #333;
    min-height: 100vh;
}

.bg-auth {
    display: flex;
    align-items: center;
}

/* Containers */
.login-container, .register-container {
    max-width: 450px;
    width: 100%;
    margin: auto;
    padding: 20px;
}

.logo-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-wrapper img {
    max-height: 80px;
    width: auto;
}

/* Cards */
.card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.card-header {
    background: transparent;
    border-bottom: none;
    padding-top: 1.5rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    font-size: 1.5rem;
}

.card-body {
    padding: 2rem;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background-color: #fff !important;
    margin-bottom: 2rem;
}

.navbar-brand .fw-bold {
    font-size: 1.25rem;
}

/* Forms */
.form-label {
    font-weight: 500;
    color: #6c757d;
}

.form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
}

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

/* Buttons */
.btn {
    border-radius: 0.5rem;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0d6efd;
    border: none;
}

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

/* Alerts */
.alert {
    border-radius: 0.5rem;
    font-size: 0.9rem;
}

/* Badges */
.badge {
    padding: 0.5em 0.8em;
    border-radius: 0.5rem;
    font-weight: 500;
}

/* Utilities */
.font-sm {
    font-size: 0.875rem;
}

.password-box {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    padding: 1.5rem;
    font-size: 1.5rem;
    font-family: monospace;
    letter-spacing: 2px;
    border-radius: 0.5rem;
}

