* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    min-height: 8vh;
    justify-content: space-between;
    align-items: center;
    padding-right: 20px;
    position: fixed;
    min-width: 100%;
    
    padding-left: 20px;
    background-color: rgb(109, 116, 121);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
main {
    display: flex;
    flex-direction: column;
    font-family: "Saira Stencil", sans-serif;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
}
body {
        background-color: rgb(90, 90, 90);
}
#message {
    font-size: 24px;
    font-family: "Saira Stencil", sans-serif;
    color: white;
}
#display {
    display: flex;
    position: relative;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
    flex-direction: column;
    background-color: rgb(109, 116, 121);
    font-size: 20px;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.445);
    /*border: 2px solid rgb(0, 0, 0);*/
    border-radius: 2%;
    width: 35vh;
    /* min-width: 22vh;
    max-width: 22vh; */
    padding-top: 10px;
    padding-bottom: 25px;
}
form {
    width: 80%;
    padding-bottom: 15px;
}
input {
    font-family: "Saira Stencil", sans-serif;
    padding: 10px;
    border: 1px solid rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.61);
    border-radius: 5px;
    width: 100%;
}
button {
    padding: 10px;
    border: 1px solid rgb(0, 0, 0);
    background-color: rgba(0, 89, 255, 0.788);
    color: black;
    font-weight: bold;
    border-radius: 5px;
    width: 100%;
}
#dividor {
    display: inline-flex;
    background-color: rgb(0, 0, 0);
    min-width: 5px;
    width: .6vh;
    max-width: 5px;
    margin: 5px;
    height: 3.7vh;
}
#display a {
    text-decoration: none;
    color: rgb(143, 223, 255);
    border-radius: 5px;
}

#display a:active {
    color: rgb(0, 0, 0);
    transition: color 0.3s ease;
}
p {
    color: white;
    font-size: 15px;
}
button {
    font-family: "Saira Stencil", sans-serif;
    color: white;
}
#signup-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
#login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
#remember-me {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
#remember-me-container {
    font-size: 12px;
    display: flex;
    flex-direction: row;
    flex-direction: row;
    align-items: center;
    margin-right: 20px;
}
#remember-me-container label {
    margin-left: 2px;
}
#remember-me input {
    width: auto;
}
#remember-me p {
    font-size: 12px;
    margin-left: 20px;
}
#error-display {
    display: none;
    justify-items: center;
    background-color: rgb(140, 73, 73);
    width: 30vh;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-color: black;
    border-top: 1px solid;
    border-left: 1px solid;
    border-right: 1px solid;
}
#error-display p {
    color: rgb(255, 255, 255);
}