﻿.otp-hint {
    font-size: 0.875rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.otp-error {
    font-size: 0.8rem;
    color: #e53e3e;
    margin-top: -0.5rem;
    margin-bottom: 0.75rem;
}

.otp-resend {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.75rem;
}

.link-btn {
    background: none;
    border: none;
    color: var(--primary, #3b82f6);
    cursor: pointer;
    padding: 0;
    font-size: inherit;
    text-decoration: underline;
}

    .link-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.user-grid{
    margin-top: 15px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 26px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 15px;
        width: 15px;
        left: 3px;
        bottom: 2.7px;
        background-color: white;
        border-radius: 50%;
        transition: .4s;
    }

input:checked + .slider {
    background-color: var(--primary);
}

    input:checked + .slider:before {
        transform: translateX(18px);
    }