:root {
    --mono-bg: #000000;
    --mono-text: #ffffff;
    --mono-muted: #666666;
    --mono-accent: #a855f7;
    /* Vibrant Purple */
    --mono-primary: #ffffff;
    /* High contrast white buttons */
}

body.auth-mono {
    background: var(--mono-bg) !important;
    color: var(--mono-text);
    font-family: 'Figtree', sans-serif;
    margin: 0;
    line-height: 1.4;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mono-container {
    max-width: 440px;
    width: 90%;
    margin: 0 auto;
    padding: 60px 20px;
}

.mono-header-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 40px;
    background: transparent;
}

.mono-header-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mono-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.mono-subtitle {
    color: var(--mono-muted);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 60px;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.mono-group {
    margin-bottom: 32px;
}

.mono-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--mono-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.mono-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #222;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    border-radius: 0;
    font-family: 'Figtree', sans-serif;
}

.mono-input:focus {
    border-color: var(--mono-accent);
}

.mono-input::placeholder {
    color: #222;
}

.mono-btn {
    background: var(--mono-primary);
    color: #000;
    border: none;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    width: auto;
    min-width: 148px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 20px;
    font-family: 'Figtree', sans-serif;
}

.mono-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.mono-btn:disabled {
    background: #222;
    color: #444;
    cursor: not-allowed;
}

.mono-separator {
    display: flex;
    align-items: center;
    margin: 48px 0;
    color: #333;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.mono-separator::before,
.mono-separator::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #111;
}

.mono-separator::before {
    margin-right: 20px;
}

.mono-separator::after {
    margin-left: 20px;
}

.mono-social-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mono-social-btn {
    width: 100%;
    height: 56px;
    background: #000;
    color: #fff;
    border: 1px solid #222;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: 0.2s;
}

.mono-social-btn:hover {
    background: #111;
    border-color: #444;
}

.mono-otp-grid {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

.mono-otp-input {
    width: 42px;
    height: 42px;
    background: transparent;
    border: 2px solid #222;
    border-radius: 4px;
    text-align: center;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.mono-otp-input:focus {
    border-color: var(--mono-accent);
    background: rgba(168, 85, 247, 0.05);
}

.mono-footer {
    margin-top: 60px;
    color: #333;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.mono-footer span {
    color: var(--mono-accent);
    cursor: pointer;
    margin-left: 8px;
}