.inputs input
{
    width: 1.5rem;
    height: 2rem;
    border: none;
    outline: none;
    border-radius: .5rem;
    text-align: center;
    background-color: hsl(0 , 0% , 95%);
}

.inputs-container
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}


.title
{
    margin-bottom: 1rem;
}

.otp-timer
{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
    margin-top: 2rem;
}

button
{
    padding: 1rem;
    outline: none;
    border: none;
    border-radius: .5rem;
    background-color: var(--primary-color);
    width: 100%;
    margin-top: 2rem;
    color: white;
}


.account-verify-phone
{
    display: none;
}


@media (min-width: 48rem) {
    .inputs input
    {
        width: 3rem;
        height: 4rem;
        border: none;
        outline: none;
        border-radius: .5rem;
        text-align: center;
    }
}