/* Login Page Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.login-container {
    background: linear-gradient(135deg, #f1f9ff 0%, #e0f2fe 100%);
}

.login-box {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
}

.login-content {
    padding: 0rem 2rem 2rem 2rem;
    text-align: center;
}

.header-section {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
}

.header-logo {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-title {
    margin-bottom: 0.25rem;
}

.header-text {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold !important;
}

.header-subtitle {
    color: #dbeafe !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 500 !important;
    margin: 0;
}

.message-container {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.captcha-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.button-container {
    /*margin-bottom: 1.5rem;*/
}

.footer-section {
    text-align: center;
    padding: 1rem 2rem;
}

.input-field {
    font-size: 16px;
    padding: 12px 16px;
    width: 100%;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: left;
}

.input-field:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.input-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    text-align: left;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.login-button {
    font-size: 16px;
    padding: 14px 20px;
    font-weight: 600;
    width: 33.333%;
    min-width: 120px;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.login-button:hover:not(:disabled) {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.15);
}

.login-button:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.login-button:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-spinner {
    display: inline-block;
    animation: spin 1s linear infinite;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

.login-button.loading {
    background-color: #9ca3af !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    color: white !important;
}

.login-button.loading:hover {
    background-color: #9ca3af !important;
    transform: none !important;
    box-shadow: none !important;
    color: white !important;
}

.login-button.loading:active {
    background-color: #9ca3af !important;
    transform: none !important;
    box-shadow: none !important;
    color: white !important;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-container {
    text-align: center;
}

.footer-section p {
    margin-top: 0;
    margin-bottom: 0;
}