

/*login styles*/
.section-otp {
    text-align: center;
}

h1 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.otp-input {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

    .otp-input input {
        width: 40px;
        height: 40px;
        margin: 0 5px;
        text-align: center;
        font-size: 1.2rem;
        border: 1px solid #cdcdcd;
        border-radius: 4px;
        background-color: #fbfbfb;
        color: #000000;
    }

        .otp-input input::-webkit-outer-spin-button,
        .otp-input input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .otp-input input[type=number] {
            -moz-appearance: textfield;
        }

button {
    background-color: #a27f5c;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin: 5px;
}

    button:hover {
        background-color: #000000;
    }

    button:disabled {
        background-color: #cccccc;
        color: #666666;
        cursor: not-allowed !important;
    }

#timer {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #a27f5c;
}

/*login styles*/
