p.message {
    margin-bottom: 20px;
    font-family: 'Roboto';
    font-size: 13px;
    color: #181818;
}
.message a {
    font-weight: bold;
    text-decoration: none;
    color: #8758FF;
}
input {
    margin: 22px;
    width: 350px;
    height: 35px;
    padding-left: 10px;
    font-size: 15px;
    color: #8758FF;
    font-family: 'Roboto', sans-serif;
    border: 1px solid #8758FF;
    background-color: #F2F2F2;
}
input[type="submit"] {
    border: none;
    background-color: #8758FF;
    border-radius: 5px;
    width: 200px;
    color: #F2F2F2;
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
}
input::placeholder{
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #8758FF;
}
input:focus{
    outline: none;
    border: none;
    border-bottom: 2px solid #8758FF;
}
.logInForm {
    display: flex;
    flex-direction: column;
    width: 70%;
    align-items: center;
    justify-content: center;
    margin: 100px auto;
    background-color: #F2F2F2;
    border: 2px solid #F2F2F2;
    border-radius: 5px;
}
.logInForm h2 {
    font-family: 'Nunito', sans-serif;
    color: #181818;
    margin: 20px auto;
    font-weight: bold;
}
.logInForm form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.error-message{
    visibility: hidden;
}
.show-error {
    color: red;
    visibility: visible;
    font-family: 'Nunito';
}
.error-input{
    border-color: red;
}
@media (max-width: 575px){
    .logInForm {
        width: 90%;
    }
    input {
        width: 300px;
    }
}