body {
    background-color: #272333;
    color:white;
    padding: 0;
    margin: 0;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    text-decoration: none;
}

main {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin-top: 4rem;
}

.logo {
    margin-bottom: 1rem;
}

form{
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 95%;
    align-items: center;
}

&:-webkit-autofill::first-line,
      &:-webkit-autofill,
      &:-webkit-autofill:hover,
      &:-webkit-autofill:focus,
      &:-webkit-autofill:active {
        font-family: "Roboto", "Helvetica", "Arial", sans-serif !important;
        font-size: 1rem;
      }

input{
    border-radius: 0.7rem;
    border:0;
    font-size: 1rem;
    padding: 1rem;
    /* min-width: 20rem; */
    background-color: white !important;
}

label{
    font-size: 1rem;
    font-weight: 300;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    padding-bottom: 0.5rem;
    letter-spacing: 0.35px;
}

.login-field {
    display: flex;
    flex-direction: column;
    width:100%;
}

.password-field {
    width: 100%;
}

button {
    color: white;
    border: 1px solid #673ab7;
    background-color: #673ab7;
    font-size: 1.1rem;
    border-radius: 4rem;
    padding: 0.6rem 1.75rem;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    border: 0;
    font-weight: 300;
    cursor: pointer;
  }

button:hover {
    border: 1px solid white;
}

.button-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.login {
    justify-content: end;
}

.error-message {
    color: white;
    font-size: 0.9rem;
    display: none;
    flex-direction: row;
    gap: 0.8rem;
    align-items: center;
}

.error-roundel {
    background-color: white;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 2rem;
    padding: 0.3rem;
}

.link {
    background-color: transparent;
    padding:0;
    margin:0;
    color: white;
    font-size: 0.9rem;
}

.link:hover {
    text-decoration: underline;
}

.links {
    padding: 0 1rem;
}

.lock-off {
    display: none;
}

.lock-on {
    display: block;
}

.password {
    display: flex;
    flex-direction: row;
    gap:1rem;
    background-color: white;
    border-radius: 0.7rem;
    padding-right: 1rem;

}

@media (min-width: 30em) {

    form {
        width: 65%;
    }

}


@media (min-width: 48em) {

    form {
        width: 40%;
    }

}

@media (min-width: 60em) {
    form {
        width: 30%;
    }
}
