/* Pristine White Cardless Notion/Apple Minimalist Login Interface */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background-color: #fafafa;
    font-family: var(--font-family);
    padding: 20px;
}

.login-minimal-wrapper {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-brand-logo {
    width: 48px;
    height: 48px;
    background: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 22px;
    color: #ffffff;
    box-shadow: 0 8px 16px -4px rgba(37, 99, 235, 0.3);
}

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

.login-header h1 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.4px;
    margin-bottom: 6px;
}

.login-header p {
    color: #64748b;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.4;
}

.login-form-box {
    width: 100%;
}

.login-form-box .form-group {
    margin-bottom: 18px;
}

.login-form-box .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-form-box input[type="email"],
.login-form-box input[type="password"] {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: #ffffff;
    color: #0f172a;
    font-size: 14px;
    outline: none;
    transition: all 0.15s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.login-form-box input[type="email"]::placeholder,
.login-form-box input[type="password"]::placeholder {
    color: #94a3b8;
}

.login-form-box input[type="email"]:focus,
.login-form-box input[type="password"]:focus {
    border-color: #2563eb;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.login-submit-btn {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-submit-btn:hover {
    background: #1d4ed8;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.login-submit-btn:active {
    transform: translateY(0);
}

.login-error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}
