.otp-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #fff;
    
}

.otp-card {
    position: relative;
    width: 100%;
    max-width: 568px;
    min-height: 375px;
    border: 1px solid #F0F0F0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.back-button {
    position: absolute;
    top: 24px;
    right: 25px;
    width: 26px;
    height: 26px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: #333;
    cursor: pointer;
}

.back-button svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.otp-content {
    width: min(100% - 48px, 346px);
    margin: 0 auto;
    padding-top: 27px;
    text-align: right;
}

.brand-logo {
    height: 93px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 20px;
}

.brand-logo img {
    display: block;
    width: auto;
    max-width: 150px;
    height: auto;
    max-height: 88px;

    direction: ltr;
    transform: none;
}

.otp-content h1 {
    margin: 0 0 18px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
}

.otp-description {
    margin: 0 0 11px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 400;
}

.input-wrapper {
    position: relative;
    width: 100%;
    height: 40px;
    margin-bottom: 16px;
}

.input-wrapper input {
    width: 100%;
    height: 100%;
    padding: 5px 12px ;
    border: 0;
    border-radius: 8px;
    outline: none;
    background: #F0F5FA;
    color: #222;
    font-family: inherit;
    font-size: 12px;
    text-align: right;
    transition: box-shadow 0.2s ease;
}

.input-wrapper input:focus {
    box-shadow: 0 0 0 2px rgba(255, 0, 88, 0.14);
}

.otp-content .status { margin: -8px 0 10px; font-size: 12px; color: #d80032; }
.otp-content .status.hidden { display: none; }

.input-wrapper label {
    position: absolute;
    top: 7px;
    right: 12px;
    color: #777;
    font-size: 10px;
    line-height: 1;
    pointer-events: none;
}

.continue-button {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 9px;
    background: #FF025A;
    color: #fff;
    font-family: inherit;
    font-size: 18px;
    padding: 9px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.continue-button:hover {
    background: #e90050;
}

.continue-button:active {
    transform: translateY(1px);
}

.terms-text {
    margin: 14px 0 0;
    color: #464646;
    font-size: 12px;
    text-align: right;
    white-space: nowrap;
}

.terms-text a {
    color:#464646;

}

@media (max-width: 600px) {
    .otp-page {
        padding: 16px;
    }

    .otp-card {
        min-height: 375px;
    }

    .otp-content {
        width: min(100% - 40px, 346px);
    }

    .back-button {
        top: 18px;
        right: 18px;
    }
}

