/* Utility classes */
.text-center {
    text-align: center;
}

/* Logout confirmation styles */
.logout-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-50);
}

.logout-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 400px;
    margin: 0 1rem;
}

.logout-icon {
    font-size: 2.5rem;
    color: #063888;
    margin-bottom: 1rem;
}

.logout-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.logout-message {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.logout-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.logout-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
}

.logout-btn-primary {
    background-color: #063888;
    color: white;
}

.logout-btn-primary:hover {
    background-color: #1c2a44;
}

.logout-btn-secondary {
    background-color: var(--gray-200);
    color: var(--gray-700);
}

.logout-btn-secondary:hover {
    background-color: var(--gray-300);
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .logout-container {
        background-color: var(--gray-900);
    }

    .logout-card {
        background-color: var(--gray-800);
    }

    .logout-title {
        color: white;
    }

    .logout-message {
        color: var(--gray-300);
    }

    .logout-btn-secondary {
        background-color: var(--gray-700);
        color: white;
    }

    .logout-btn-secondary:hover {
        background-color: var(--gray-600);
    }
}

.input-group input.form-control {
    border: 1px solid #063888;
    transition: all 0.2s ease;
    background: #A3A8B4;
    padding: 0.75rem 1rem;
    padding-right: 2.5rem;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    color: #063888;
}

.input-group input.form-control:focus {
    border-color: #1c2a44;
    box-shadow: 0 0 0 3px rgba(6, 56, 136, 0.1);
    outline: none;
    background: #FFFFFF;
}

.input-group input.form-control::placeholder {
    color: #063888;
    opacity: 0.7;
}

.input-group input.form-control::-webkit-input-placeholder {
    color: #063888;
    opacity: 0.7;
}

.input-group input.form-control::-moz-placeholder {
    color: #063888;
    opacity: 0.7;
}

.input-group input.form-control:-ms-input-placeholder {
    color: #063888;
    opacity: 0.7;
}

.input-group input.form-control:-moz-placeholder {
    color: #063888;
    opacity: 0.7;
}

/* Auth Page Layout */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.auth-page {
    height: 100vh;
    width: 100vw;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
}

.auth-container {
    display: flex;
    flex-direction: row-reverse;
    max-width: none;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.auth-left {
    flex: 1;
    background: linear-gradient(135deg, rgba(6, 56, 136, 0.1) 0%, rgba(163, 168, 180, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-right {
    flex: 1;
    padding: 2rem;
    display: flex;
    align-items: center;
}

.auth-content {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.auth-illustration {
    max-width: 100%;
    height: auto;
}

.auth-logo {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.auth-logo-img {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #063888;
    margin-bottom: 0.5rem;
}

.input-group {
    position: relative;
}

.input-group input.form-control {
    width: 100%;
    height: 3rem;
    padding: 0.75rem 1rem;
    padding-right: 2.5rem;
    border-radius: 0.75rem;
    border: 1px solid #063888;
    background: #A3A8B4;
    color: #063888;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.input-group input.form-control:focus {
    border-color: #1c2a44;
    box-shadow: 0 0 0 3px rgba(6, 56, 136, 0.1);
    outline: none;
    background: #FFFFFF;
}

.input-group input.form-control::placeholder {
    color: #063888;
    opacity: 0.7;
}

.input-group input.form-control::-webkit-input-placeholder {
    color: #063888;
    opacity: 0.7;
}

.input-group input.form-control::-moz-placeholder {
    color: #063888;
    opacity: 0.7;
}

.input-group input.form-control:-ms-input-placeholder {
    color: #063888;
    opacity: 0.7;
}

.input-group input.form-control:-moz-placeholder {
    color: #063888;
    opacity: 0.7;
}

.input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #063888;
}

/* Button Styles */
.btn-primary {
    background-color: #063888 !important;
    color: white !important;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    width: 100%;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #1c2a44 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(6, 56, 136, 0.2);
}

.form-actions {
    margin-top: 1.5rem;
    text-align: center;
}

/* Alert Styles */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.alert-danger {
    background-color: rgba(211, 47, 47, 0.1);
    color: #D32F2F;
    border: 1px solid rgba(211, 47, 47, 0.3);
}

.alert-success {
    background-color: rgba(6, 56, 136, 0.1);
    color: #063888;
    border: 1px solid rgba(6, 56, 136, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .auth-container {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .auth-left {
        display: none;
    }

    .auth-right {
        padding: 1.5rem;
    }
} 