body {
    background-image: url(/static/imgs/login_page.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    font-family: Arial, sans-serif;
    background-color: #1076a5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.password_change_form {
    outline: 2px solid #f7f5f5;
    border: 3px solid #070707;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    width: 300px;
    margin: 0 auto;
}

.password_change_form input[type="text"], .password_change_form input[type="password"] { 
    box-sizing: border-box; 
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #070707;
    font-size: 18px;
    color: rgb(14, 1, 1);
}

.password_change_form label {
    font-size: 20px;
    color: rgb(9, 72, 167);
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
    font-weight: bold;
}

.password_change_form h1 {
    text-align: center;
    color: rgb(9, 72, 167);
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}

.password_change_form p {
    text-align: center;
    color: rgb(9, 72, 167);
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
    font-size: 18px;
    font-weight: bold;

}

.button_container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.password_reset_button {
    display: inline-block;
    width: 100%;
    line-height: 30px;
    padding: 10px;
    margin: 10px 0;
    background-color: #1076a5;
    color: white;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
    text-decoration: none;
    border: 2px solid black;
}  


.login_error {
    display: block;
    color: red;
    background: #f7f5f57a;
    text-align: center;
    font-size: 20px;
}

@media screen and (max-width: 600px) {
    .password_change_form {
        width: 80%;
        padding: 20px;
    }
    .password_reset_button {
        padding: 5px 10px;
        font-size: 14px;
    }
}