.logo-div {
    width: 100%;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-div a {
    text-decoration: none;
}
.logo-div img {
    width: 300px;
}
.form-div {
    width: 100%;
    min-height: 75vh;
    padding: 20px;
}
form .ref-code {
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: #0e47a1;
    margin: 0;
}
.or-div {
    width: 100%;
    padding: 10px 30px;
    display: flex;
    align-items: center;
}
.or-div .side-span {
    display: inline-block;
    width: 20%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.5);
}
.or-div .mid-span {
    display: inline-block;
    width: 60%;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
}
.form-div .pass-reset-div {
    width: 100%;
    text-align: center;
}
.pass-reset-div .pass-reset {
    text-decoration-line: none;
    color: #000;
    font-size: 15px;
}
.footer-div {
    width: 100%;
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(14,71,161);
}
.footer-div p {
    margin: 0;
    font-size: 15px;
    font-weight: bold;
}
@media screen and (max-width: 768px) {
    .logo-div img {
        width: 200px;
    }
    form .ref-code {
        font-size: 14px;
    }
    .or-div {
        padding: 5px 20px;
    }
    .pass-reset-div .pass-reset {
        font-size: 12px;
    }
    .footer-div p {
        font-size: 12px;
    }
}