/**
 * OTP Input Styles
 * Gemensam styling for 6-siffrig verifieringskod
 */

.otp-input-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.otp-input {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    background: #FAFAFA;
    transition: border-color 0.2s, box-shadow 0.2s;
    /* Prevent iOS zoom */
    font-size: 16px;
}

@media (min-width: 481px) {
    .otp-input {
        font-size: 26px;
    }
}

.otp-input:focus {
    outline: none;
    border-color: #2ABDB5;
    box-shadow: 0 0 0 3px rgba(42, 189, 181, 0.15);
    background: white;
}

.otp-input::placeholder {
    color: #D1D5DB;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .otp-input-container {
        gap: 6px;
    }

    .otp-input {
        width: 42px;
        height: 50px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .otp-input-container {
        gap: 4px;
    }

    .otp-input {
        width: 38px;
        height: 46px;
    }
}
