/* the demo's own white-mode world */

.otp-demo,
.otp-demo * {
    font-family: Arial, Helvetica, sans-serif;
}

.otp-submit {
    font-family: Arial, Helvetica, sans-serif; /* keep submit consistent too */
}

.otp-demo {
    background: rgb(26, 26, 26);
    padding: 80px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 10;
}

.otp-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 400px;
}

.otp-subtext {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-size: 16px;
    margin: 0;
}

.otp-input {
    display: flex;
    align-items: center;
    gap: 8px;
}

.otp-digit {
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 6px;
    border: 1px solid rgb(83, 83, 83);
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    background: rgb(85, 85, 85);
    color: white;
    transition:
        border 0.2s ease,
        box-shadow 0.2s ease;
}

.otp-digit:focus {
    outline: none;
    border: 1px solid rgba(244, 66, 102, 0.5);
    box-shadow: 0 0 10px rgba(244, 66, 102, 0.15);
}

.otp-dash {
    color: rgb(85, 85, 85);
    font-size: 18px;
    padding: 0 4px;
}

.otp-submit {
    padding: 10px 24px;
    background: rgb(244, 66, 102);
    color: white;
    border-radius: 10px;
    border: none;
    font-size: 14px;
    font-family: "Satoshi", sans-serif;
    cursor: pointer;
    transition:
        opacity 0.2s ease,
        box-shadow 0.2s ease;
}

.otp-submit:hover {
    opacity: 0.9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
