/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Define fonts ---------------------------------*/
@font-face {
    font-family: montserrat;
    src: url(Montserrat-VariableFont_wght.ttf);
    font-weight: 400;
}

/* ------------------ LOGIN STYLES -------------------------------------- */
.login_div {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100svh;
    align-items: center;
    justify-content: center;
}

.animated_logo {
    width: 5rem;
    margin-bottom: 1rem;
    margin-right: 2rem;
}

.login_container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.password_box {
    width: 12rem;
    font-family: montserrat;
    font-size: 12pt;
    padding: 0.5rem;
    box-sizing: border-box;
    border: 1pt solid black;
}

.login_div button {
    border: none;
    background-color: white;
    width: 2rem;
    cursor: pointer;
}

.login_div button img {
    width: 100%;
}