input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
.loginFormSection{
    max-width: 450px;
    margin: 35px auto;

}
.loginFormSection .formTitle{
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 30px;
    text-align: center;
}

.loginFormSection .formText{
    font-size: 11px;
    font-weight: 300;
    margin-bottom: 27px;
    text-align: center;
}
.loginFormSection .text{
    font-size: 14px;
    font-weight: 300;
    margin-top: 12px;
}

.loginButton {
    background-color: var(--yellow-color);
    color: var(--black);
    padding: 14px 40px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    line-height: 15px;
    transition: background-color 0.3s;
    display: block;
    width: 120px;
}

.loginButton:hover {
    background-color: #e6d400;
}
.privacyLink{
    font-weight: 600;
}

/* OTP circular timer inside input */
#otpField {
    padding-right: 120px;
}

.otpTimerWrap {
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
}

.otpTimer {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--black);
}

.otpSvg {
    width: 16px;
    height: 16px;
    transform: rotate(-90deg);
    display: block;
}

.otpCircle-bg {
    fill: none;
    stroke: var(--light-grey-color);
    stroke-width: 3;
}

.otpCircle-progress {
    fill: none;
    stroke: var(--yellow-color);
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.25s linear;
}

.otpLabel {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    min-width: 44px; /* fits 00:30 */
    text-align: left;
}

.otpTimerWrap.expired .otpTimer {
    opacity: 0.6;
}
