.auth-container {
    height: calc(100vh - 85px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.auth-form-container {
    min-width: 50vw;
    min-height: 50vh;
    padding: 1.5rem;
    margin: 1rem 0 1rem 0;
    color: #777777;
    background-color: white;
    box-shadow: 5px 7px 7px rgba(0, 0, 0, 0.4);
    border: 2px solid #777777;
    border-radius: 2rem;
}

.auth-form-content {
    height: 100%;
    padding: 5px;
    overflow-y: scroll;
}

.auth-form-header {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.auth-form-header > .btn-close {
    position: absolute;
    right: 0;
}

.auth-form-title {
    position: relative;
}

.auth-form-title::before {
    content: "";
    position: absolute;
    bottom: -3px;
    display: block;
    width: 100%;
    height: 3.5px;
    background-color: var(--color-secondary);
}

.anchor-forgot-password {
    color: var(--bs-link-color);
    text-decoration: none;
}

.anchor-forgot-password:hover, .anchor-forgot-password:focus, .anchor-forgot-password:active {
    color: var(--bs-link-color);
}

.anchor-forgot-password:hover {
    text-decoration: underline;
}