body {
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.vl-button {
    background-color: #09f;
}
.text-muted {
    color: #6c757d !important;
}
.text-color {
    color: #495057;
}
.small {
    font-size: 90%;
    font-weight: 400;
}
.d-none {
    display: none;
}
.error-message {
    color: #a61e1e;
    display: none;
}
.not-valid {
    border: 1px solid #a61e1e !important;
}
.password-field {
    position: relative;
    display: flex;
    align-items: center;
}
.password-field button {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 0 3px 0;
    display: flex;
    align-items: center;
}
.password-field button svg {
    fill: #6c757d;
    transition: fill 0.2s ease;
}
.password-field button:hover svg {
    fill: #495057;
}
