@charset "UTF-8";

hr {
    width: 100%;
    border-style: solid;
    border-width: 1px;
    border-bottom-width: 0;
}

hr:first-of-type {
    margin-top: 10vh;
}

form.login_form {
    position: relative;
    width: 352px;
    height: fit-content;
    overflow-x: hidden;
    margin: 20px auto 30px auto;
}

label {
    float: left;
    width: fit-content;
    height: fit-content;
    margin: 30px 0 0 10px;
    line-height: 100%;
    font-size: 0.9rem;
    font-weight: bolder;
    padding-bottom: 10px;
    text-transform: uppercase;
}

input.login_input {
    float: left;
    width: 318px;
    height: 15px;
    padding: 1rem 1rem 1rem 1rem;
    border-radius: 0.3rem;
    border-width: 0.1rem;
    border-color: rgb(200, 200, 200);
    border-style: solid;
    letter-spacing: 0.2rem;
}

input.password_input {
    float: left;
    width: 318px;
    height: 15px;
    padding: 1rem 1rem 1rem 1rem;
    border-radius: 0.3rem;
    border-width: 0.1rem;
    border-color: rgb(200, 200, 200);
    border-style: solid;
    letter-spacing: 0.2rem;
}

input:focus {
    outline: none;
    border-width: 0.1rem;
    border-color: seagreen;
    background-color: rgb(219, 255, 237);
}

button {
    float: right;
    width: fit-content;
    height: fit-content;
    padding: 0.9rem;
    border-radius: 0.3rem;
    border-color: transparent;
    background-color: rgb(41, 41, 41);
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    margin: 10px 2px 30px 0;
}

button:hover {
    background-color: rgb(0, 0, 0);
}

button:focus {
    outline: none;
    background-color: rgb(0, 0, 0);
}

.login_form > a {
    float: left;
    font-size: 0.8rem;
    color: seagreen;
    text-decoration: none;
    font-weight: bold;
    clear: both;
    text-transform: uppercase;
}

.login_form > a:hover {
    text-decoration: underline;
}

.url_link_recover {
    margin: 30px 0 0 0;
}

.url_link_membership {
    margin: 35px 0 0 0;
}