.otp-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    min-height: 100vh;
    background: #f5f5f5;
}

.otp-logo img {
    width: 150px;
    margin-bottom: 1rem;
}

.otp-box-container {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.otp-title {
    font-size: 18pt;
    color: #ff7800;
    margin-bottom: 1.5rem;
}

.otp-message {
    margin-bottom: 1rem;
    font-size: 14px;
}

.otp-error {
    color: red;
}

.otp-success {
    color: green;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.otp-input {
    width: 50px;
    height: 55px;
    text-align: center;
    font-size: 22pt;
    border: 2px solid #ccc;
    border-radius: 6px;
    transition: border-color 0.2s;
}

.otp-input:focus {
    border-color: #ff7800;
    outline: none;
}

.otp-footer {
    font-size: 13px;
    margin-top: 1rem;
}

#resend-link {
    text-decoration: none;
    font-weight: bold;
}

.otp-disabled {
    pointer-events: none;
    color: gray;
    opacity: 0.6;
}

.otp-active {
    pointer-events: auto;
    color: blue;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 480px) {
    .otp-input {
        width: 42px;
        height: 50px;
        font-size: 20pt;
    }

    .otp-title {
        font-size: 14pt;
    }

    .otp-box-container {
        padding: 1.5rem 1rem;
    }

    .otp-footer {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .otp-input {
        width: 38px;
        height: 45px;
        font-size: 18pt;
    }
}
