/* Auth Pages Styles */
.login-container,
.register-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.card {
    background: rgba(2, 6, 23, 0.8);
    border: 1px solid #1e293b;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-header {
    background: transparent;
    border-bottom: 1px solid #1e293b;
    padding: 30px;
}

.card-header h2 {
    color: #f8fafc;
    font-weight: 700;
    margin: 0;
    font-size: 28px;
}

.card-body {
    padding: 40px;
}

.form-label,
.col-form-label {
    color: #e5e7eb;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    background: #1e293b;
    border: 1px solid #334155;
    color: #f8fafc;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: #1e293b;
    border-color: #22c55e;
    color: #f8fafc;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-control::placeholder {
    color: #64748b;
}

.form-check-input {
    background: #1e293b;
    border: 1px solid #334155;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #22c55e;
    border-color: #22c55e;
}

.form-check-label {
    color: #cbd5e1;
    cursor: pointer;
}

.btn-primary {
    background: #22c55e;
    color: #000;
    font-weight: 600;
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.btn-link {
    color: #22c55e;
    text-decoration: none;
    font-weight: 500;
}

.btn-link:hover {
    color: #16a34a;
    text-decoration: underline;
}

.invalid-feedback {
    color: #ef4444;
    font-size: 14px;
    margin-top: 6px;
}

.is-invalid {
    border-color: #ef4444 !important;
}

.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.text-md-end {
    text-align: right;
}

.alert {
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 24px;
    border: 1px solid;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
    color: #22c55e;
}

@media (max-width: 768px) {
    .text-md-end {
        text-align: left;
    }
}
