.disable-2fa-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.disable-2fa-content {
    background-color: #242424;
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.disable-2fa-content h3 {
    color: #ff3366;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.verification-step {
    margin-bottom: 1.5rem;
}

.verification-step label {
    display: block;
    margin-bottom: 0.5rem;
    color: #f5f5f5;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #2a2a2a;
    color: #f5f5f5;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: #ff3366;
    box-shadow: 0 0 0 2px rgba(255, 51, 102, 0.2);
}

.otp-input-container {
    display: flex;
    justify-content: center;
}

.error-message {
    color: #ff3366;
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 20px;
}

.button-group {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cancel-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f5f5f5;
}

.danger-btn {
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid #ff3366;
    color: #ff3366;
}

.danger-btn:hover {
    background: rgba(255, 51, 102, 0.2);
}