/* app/blueprints/auth/static/css/auth.css */

:root {
    --vumc-gold: #D8AB4C;
    --vumc-navy: #041E42;
    --vumc-light-gold: #F5EDD7;
}

body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.login-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

.welcome-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--vumc-gold);
    padding-bottom: 8px;
}

.welcome-header h2 {
    color: var(--vumc-navy);
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.5rem;
    margin-right: 15px;
}

.welcome-logo {
    max-height: 50px;
}

.main-logo {
    max-height: 60px;
    margin-bottom: 15px;
}

.login-card, .info-card {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
    height: 100%;
    margin-bottom: 20px;
}

.login-card {
    background-color: white;
    border-top: 4px solid var(--vumc-gold);
}

.info-card {
    background-color: var(--vumc-light-gold);
    border-top: 4px solid var(--vumc-gold);
    display: flex;
    flex-direction: column;
}

.login-header {
    text-align: center;
    margin-bottom: 20px;
}

.login-header h1 {
    font-weight: 600;
    color: var(--vumc-navy);
    margin-bottom: 5px;
}

.login-header p {
    color: #6c757d;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #495057;
}

.form-control {
    height: auto;
    padding: 10px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-primary {
    background-color: var(--vumc-gold);
    border-color: var(--vumc-gold);
    color: var(--vumc-navy);
    padding: 8px 15px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: #c09a43;
    border-color: #c09a43;
    transform: translateY(-1px);
}

.btn-block {
    display: block;
    width: 100%;
}

.alert {
    border-radius: 4px;
    padding: 15px;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* Optional logo styling */
.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo-container img {
    height: 60px;
}

.info-card h2 {
    color: var(--vumc-navy);
    font-weight: 600;
    font-size: 1.5rem;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-top: 15px;
    color: var(--vumc-navy);
    font-weight: 500;
}

.contact-info {
    margin-top: 15px;
}

.contact-info ul {
    list-style: none;
    padding-left: 5px;
    margin-bottom: 0;
}

.contact-info li {
    margin-bottom: 5px;
}

.contact-info a {
    color: var(--vumc-navy);
    text-decoration: underline;
}

.welcome-text {
    flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .login-container {
        max-width: 550px;
    }
    
    body {
        align-items: flex-start;
        padding-top: 20px;
    }
}

@media (max-width: 576px) {
    .welcome-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .welcome-logo {
        margin-left: 0;
        margin-top: 10px;
    }
}