body {
    background-color: #2b2b2b;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.container {
    margin: 110px auto;
    background-color: #1e1e1e;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    width: 450px;
    height: 500px;
}

input {
    width: 350px;
    height: 30px;
    font-size: 15px;
    margin: 10px 5px 10px 5px;
    background: transparent;
    border: none;
    border-bottom: solid 2px gray;
    color: #ffffff;
    outline: 0;
}

/*.password-field__input {
    position: relative;
    left: 20px;
}*/

.show-password {
    width: 35px;
    cursor: pointer;
    position: relative;
    left: -20px;
}

.form-submit__button {
    margin: 40px 0px 40px 0px;
    padding: 20px 85px 20px 85px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    background-color: royalblue;
    color: white;
    font-size: 1.3em;
    font-weight: bold;
}

.form_deny {
    text-decoration: none;
    margin: 0px 0px 0px 0px;
    padding: 20px 110px 20px 110px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    background-color: rgb(73, 73, 73);
    color: white;
    font-size: 1.3em;
    font-weight: bold;
}

.form-invalid {
    background-color: rgb(59, 90, 182);
    color: rgb(170, 170, 170);
}

.invalid {
    border-color: red;
}

.email_errors {
    color: red;
    font-size: 15px;
}

.password_errors {
    color: red;
    font-size: 15px;
}