/* Login Page Styles */

.login-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #141517;
}

.login-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 21, 23, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.login-loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-loading-text {
    color: white;
    font-size: 16px;
    margin-top: 20px;
}

.login-card {
    width: 480px;
    padding: 32px;
    background-color: #1A1B1E;
    border-radius: 8px;
    border: 1px solid #2C2E33;
}

.login-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid #373A40;
    margin-bottom: 24px;
}

.login-logo {
    height: 28px;
}

.login-brand-text {
    color: white;
    font-size: 18px;
    font-weight: 500;
}

.login-alert {
    margin-bottom: 16px;
    width: 100%;
}

.login-input-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.login-password-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.login-input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.login-toggle-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.login-input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    background-color: #25262b;
    border: 1px solid #373A40;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.login-password-input {
    width: 100%;
    padding: 12px 44px 12px 40px;
    background-color: #25262b;
    border: 1px solid #373A40;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.login-checklist {
    color: #909296;
    font-size: 13px;
}

.login-checklist-wrapper {
    margin-bottom: 24px;
}

.login-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.login-submit-btn {
    padding: 10px 28px;
    background-color: #228be6;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-right: 12px;
}

.login-cancel-btn {
    padding: 10px 28px;
    background-color: #373A40;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

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

.login-forgot-link {
    color: #228be6;
    font-size: 13px;
    text-decoration: none;
}

.login-footer-divider {
    border-top: 1px solid #373A40;
    margin-top: 8px;
    padding-top: 20px;
    text-align: center;
}

.login-footer-text {
    color: #909296;
    font-size: 13px;
}

.login-footer-link {
    color: #228be6;
    font-size: 13px;
    text-decoration: none;
}

.login-tagline {
    color: #5C5F66;
    font-size: 12px;
    margin-top: 24px;
}
