/* login.css - Authentication pages styling */

.background-split {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.85);
    z-index: -1;
}

.login-container { 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-box {
    background-color: rgba(255, 255, 255, 0.95);
    max-width: 400px;
    width: 100%;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo {
    max-width: 150px;
    height: auto;
}

/* Login-specific button overrides */
.btn-primary {
    background-color: #106c79; /* Temporary opaque color */
    border: none;
    opacity: 1;
}

.btn-primary:hover {
    background-color: var(--primary-hover-color);
    opacity: 1;
}

/* Document Quick Submit Card Styling */
.quick-docs-card {
    background-color: #f8f9fa;
    border-left: 4px solid #0dcaf0;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-top: 2rem;
    padding: 0;
    border-radius: 0.375rem;
}

.quick-docs-card .card-body {
    padding: 1.25rem;
    text-align: center;
}

.quick-docs-card .card-title {
    color: #0dcaf0;
    font-weight: 600;
}

.quick-docs-card:before {
    content: '';
    display: block;
    height: 1px;
    background: #dee2e6;
    margin: 0 1.25rem;
}

.docs-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.docs-divider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #dee2e6;
    z-index: 1;
}

.docs-divider span {
    position: relative;
    z-index: 2;
    background: white;
    padding: 0 0.75rem;
    font-size: 0.875rem;
    color: #6c757d;
}