/* Phone Verification Code Inputs */
.code-inputs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 15px 0;
}

.code-input {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
    outline: none;
}

.code-input:focus {
    border-color: #2F7F76;
    box-shadow: 0 0 0 3px rgba(47, 127, 118, 0.1);
}

.code-input:valid {
    border-color: #10b981;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .code-inputs {
        gap: 8px;
    }

    .code-input {
        width: 45px;
        height: 55px;
        font-size: 20px;
    }
}