@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300);

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-weight: 300;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: black;
    font-weight: 300;
}

body ::-webkit-input-placeholder {
    /* WebKit browsers */
    font-family: 'Source Sans Pro', sans-serif;
    color: black;
    font-weight: 300;
}

body :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    font-family: 'Source Sans Pro', sans-serif;
    color: black;
    opacity: 1;
    font-weight: 300;
}

body ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    font-family: 'Source Sans Pro', sans-serif;
    color: black;
    opacity: 1;
    font-weight: 300;
}

body :-ms-input-placeholder {
    /* Internet Explorer 10+ */
    font-family: 'Source Sans Pro', sans-serif;
    color: black;
    font-weight: 300;
}

form {
    padding: 20px 0;
    position: relative;
    z-index: 2;
    width: 250px;
    margin: 0 auto;
}

#formlogin {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    height: 50vh;
    width: 30vw;
    background-color: rgba(255, 255, 255);
    border: 1px solid rgba(182, 182, 182, 0.4);
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
            0 10px 20px -1px rgba(0, 0, 0, 0.06);
}

#formlogin h1 {
    font-weight: 500;
}

#loginInputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.separador {
    width: 50%;
    border-bottom: 1px solid rgba(182, 182, 182, 0.7);
}

@media screen and (max-width: 768px) {
    #formlogin {
        width: 90vw;
        height: 40vh;
    }
}

form input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    border: none;
    border: 1px solid rgba(184, 184, 184, 0.8);
    border-radius: 90px;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: #4a4a4a;
    transition-duration: 0.25s;
    font-weight: 300;
    padding: 10px 15px;
}

form input:focus {
    scale: 1.04;
}

form input:active {
    scale: 1.07;
}

form input::placeholder {
    color: #1f1f1f;
    opacity: 1;
}

form button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    border: 1px solid rgba(173, 173, 173, 0.8);
    border-radius: 90px;
    display: block;
    cursor: pointer;
    font-size: 18px;
    transition-duration: 0.25s;
    padding: 8px 20px;
    font-family: 'Source Sans Pro', sans-serif;
}

form button:hover {
    color: black;
}

.logo {
    width: auto;
    height: 5rem;
    padding: .5rem;
}

.strech-page {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.strech-page>* {
    width: 100%;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.erro-msg {
    font-weight: 600;
    color: rgb(221, 61, 61);
    font-size: x-large;
}

.wrapper {
    height: 100%;
    position: relative;
    border-top: 1px solid #bbc4d1;
    border-bottom: 1px solid #bbc4d1;
}

.wrapper.form-success .container h1 {
    transform: translateY(85px);
}

.container {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.container h1 {
    font-size: 40px;
    transition-duration: 1s;
    transition-timing-function: ease-in-put;
    font-weight: 200;
}

.btn-staff-login {
    color: #333852;
    background-color: #fff;
    font-weight: bold;
    font-size: x-small;
    text-decoration: none;
    margin: 10px auto;
    margin-bottom: -0.5rem;
    padding: .25rem .5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    border: 0;
    border-radius: 3px 3px 0px 0px;
    width: auto;
    cursor: pointer;
    transition-duration: .25s;
}

.btn-staff-login-bottom {
    display: block;
}

.container-staff-login {
    position: absolute;
    bottom: 0;
    z-index: 2;
}

@media only screen and (min-width: 600px) {
    .container-staff-login {
        left: 90%;
    }
}
