/* Authentication Pages - Consolidated Styles */

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d2434;
    padding: 30px 20px;
}

.auth-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.auth-card.small {
    max-width: 450px;
}

.logo-section {
    text-align: center;
    margin-bottom: 30px;
}

.logo-section img {
    width: 150px;
}

.auth-card .form-control {
    padding: 10px 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.auth-card .form-control:focus {
    border-color: #0d2434;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.auth-card .form-select {
    padding: 10px 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.auth-card .form-select:focus {
    border-color: #0d2434;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.auth-card .btn-primary {
    padding: 12px;
    background: #2b9ef0;
    border: none;
    border-radius: 8px;
    font-weight: 600;
}

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

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.info-text {
    background: #d1ecf1;
    color: #0c5460;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.password-strength {
    height: 4px;
    border-radius: 2px;
    margin-top: 5px;
    transition: all 0.3s;
}

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.divider:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.divider span {
    background: white;
    padding: 0 15px;
    position: relative;
    color: #999;
}
