@font-face {
    font-family: myFirstFont;
    src: url(Exo2-VariableFont_wght.ttf);
}

* {
    font-family: myFirstFont;
}

.resetPass {
    color: #AD1920;
    display: inline-block;
    position: relative;
}

/* .resetPass a:hover{
    font-weight: bold;
    text-decoration-line: underline;
} */
.resetPass::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #AD1920;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
    font-weight: bold;
    color: #AD1920;
}

.resetPass:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
    color: #AD1920;
}

.sendLink {
    background-color: #AD1920;
    color: white;
}

.sendLink:hover {
    background-color: #00658B;
    color: white;
}

.poweredby a {
    text-decoration: none;
    color: #AD1920;
}

.custom-tooltip {
    --bs-tooltip-bg: #AD1920;
    --bs-tooltip-color: white;
}