.password-rules {
    display: none;
    color: rgb(0, 0, 0);
    font-family: sans-serif;
    font-size: 14px;
}

.errortext{
    color: #ad0824;
    font-size: 16px;
    font-family: sans-serif;
}

body{
    height: 100%;
    background-image: url(login.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.content{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
}

.register-container {
    padding: 4rem;
    margin-top: 50px;
    background-color: white;
    width: 500px;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,0.15);
}

form{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.inputs_container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin-bottom: 1rem;
}


.message {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    font-size: 20px;
    text-align: center;
    
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
}