body,
html {
    background-color: var(--clrF);
}

.loginForm {
    height: 90dvh;
    justify-content: center;
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
}

.doomasImage {
    height: auto;
    width: 100%;
    align-self: center;
}

.formTitle {
    margin-top: 30px;
    font-size: 24px;
    font-weight: 700;
    color: var(--clr3);
}

.loginText {
    margin-top: 5px;
    font-weight: 500;
    color: var(--clr5);
    font-size: 15px;
}

.phoneFieldset {
    margin-top: 20px;
}

.numberInput {
    height: 48px;
    padding: 0 40px 0 15px;
    border-radius: 7px;
    border: 1px solid var(--blackOp28);
    outline: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--clr5);
    transition: border 0.4s;
    width: 100%;
}

    .numberInput:focus {
        border: 1.5px solid var(--blackOp50);
    }

.phoneIconDiv {
    height: 30px;
    width: 40px;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--clr7);
    font-size: 12.8px;
    padding-left: 5px;
    border-left: 1px solid var(--clr9);
    opacity: 0.7;
}

.submitBtn {
    height: 48px;
    border-radius: 7px;
    background-color: #002d72;
    font-size: 15px;
    color: var(--clrF);
    margin: 25px 0 15px;
    transition: filter 0.4s;
    font-weight: 500;
}

    .submitBtn:hover {
        filter: grayscale(0.4);
    }

.oneTimeCodeField {
    margin-top: 10px;
}

.oneTimeCodeField {
    direction: ltr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    gap: 10px;
}

.oneTimeCodeInput {
    height: 40px;
    width: 100%;
    border-radius: 7px;
    outline: none;
    border: 1px solid var(--blackOp28);
    font-size: 18px;
    font-weight: 500;
    color: var(--clr3);
    text-align: center;
}

    .oneTimeCodeInput:focus {
        border: 1px solid var(--blackOp50);
    }

.codeActionDiv {
    margin-top: 10px;
}

.changeNumberLink {
    color: var(--redClr);
    font-size: 15px;
    font-weight: 500;
}
.hidden{
    display:none;
}
.success{
    color:#00ff21;
}
.requestCodeAgain {
    font-size: 14px;
    color: var(--clr3);
    font-weight: 500;
}

.timerText {
    font-size: 15px;
    font-weight: 500;
    color: var(--clr5);
}

.linkItem {
    font-size: 14px;
    font-weight: 500;
    color: var(--clr5);
    padding-right: 15px;
    position: relative;
}

    .linkItem::after {
        content: "";
        width: 5px;
        height: 5px;
        background-color: var(--clr7);
        border-radius: 50%;
        position: absolute;
        right: 0;
        top: 40%;
        transform: translateY(-50%);
        opacity: 0.7;
    }
