@font-face {
    font-family: Pervitina-Dex;
    src: url('../fonts/Pervitina-Dex-FFP.ttf') format('truetype');
}

:root {
    --fontNyGYM: Pervitina-Dex, sans-serif;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    font-family: Arial;
    background: #f5f5f5;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    
    padding: 5px;
    min-height: 100vh;
    background: 
        url('../images/gym-background-verify.png')
        no-repeat
        bottom / cover
    ;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    max-width: 400px;
    padding: 7px;
    text-align: center;
    border-radius: 7px;
    background-color: white;
    box-shadow: 0px 0px 5px #0000008c;
}

.container > div > p {
    text-align: justify;
    margin: 10px 0px;
}

h1 {
    color: white;
    font-size: 3em;
    font-weight: lighter;
    font-family: var(--fontNyGYM);
    text-shadow: 0px 0px 5px #00000080;
}

h2 {
    margin: 15px 0px;
}

input {
    width: 100%;
    padding: 10px;
    outline: none;
    border-radius: 7px;
    margin: 15px 0px 5px 0px;
    border: 1px solid #8a8a8a;
    transition-duration: .3s;
}

input:hover {
    padding: 11px;
    cursor: pointer;
    transition-duration: .3s;
}

button {
    width: 100%;
    border: none;
    padding: 10px;
    cursor: pointer;
    color: #ffffff;
    border-radius: 7px;
    font-weight: bolder;
    background: #000000;
    margin: 5px 0px 15px 0px;
    transition-duration: .3s;
}

button:hover {
    padding: 11px;
    cursor: pointer;
    transition-duration: .3s;
}

button:disabled {
    background: #777;
    cursor: not-allowed;
}

.box-error {
    background: #ffdddd;
    padding: 10px;
    margin-bottom: 10px;
    border-left: 4px solid red;
}

.box-success {
    background: #ddffdd;
    padding: 10px;
    margin-bottom: 10px;
    border-left: 4px solid green;
}

#back-page {
    position: absolute;
    left: 0%;
    top: 0%;

    padding: 10px;
    color: white;
    font-weight: bolder;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.514);
    transition-duration: .3s;
}

#back-page:hover {
    padding: 11px;
    cursor: pointer;
    transition-duration: .3s;
}