body,
html {
    overflow-x: hidden;
}

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

body {
    min-height: 100vh;
    font-family: 'Raleway', sans-serif;
    font-size: 1.6rem;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

main {
    flex: 1;
}

:root {
    font-size: 62.5%;
}

.labelhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

h1 {
    font-weight: 700;
    font-size: 3.2rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

h2 {
    font-weight: 600;

    font-size: 1.8rem;
}

label {
    font-weight: 400;
}

small {
    font-style: italic;
}

header {
    background: #fff;
    color: #000;
    border-bottom: 1px solid #000;
    padding: 1.5rem;

    display: flex;
    align-items: center;
}

header .main, header .msg, header .logout{
    height: 4.4rem;
    display: flex;
    align-items: center;
}

header .msg, header .logout{
    justify-content: flex-end;
}

header .main {
    font-size: 2.4rem;
    font-weight: 600;
}

.btn-sair {
    display: flex;

    border: 1px solid #000;
    color: #000;
}

.btn-sair a {
    color: #000;
    text-decoration: none;

    padding: 1rem 1.5rem;

    transition-duration: 500ms;
}

.btn-sair a:hover {
    background: #000;
    color: #fff;
}

main {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.principal {
    display: flex;
    justify-content: center;
}

.form-job,
.form-login {
    width: 100%;

    line-height: 1.5rem;

    margin-top: .8rem;
    margin-bottom: .8rem;

    padding: .8rem 1.2rem;
}

.radios {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.radios p {
    margin: 0;
    padding-top: 1.5rem;
}

.checkboxs {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.form-check-label {
    padding-left: 1.2rem;
}

.form-check-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: .5rem;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2rem;
    width: 2rem;
    transition: all 0.15s ease-out 0s;
    background: transparent;
    border: .5rem solid #000;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
    z-index: 1000;
}

.form-check-input:hover,
.form-check-input:checked,
.form-check-input:focus {
    outline: none !important;
}

.form-check-input:checked {
    background: #000;
}

.form-check-input:checked::before {
    content: '';
}

.form-check-input:checked::after {
    -webkit-animation: click-wave 0.65s;
    -moz-animation: click-wave 0.65s;
    animation: click-wave 0.65s;
    background: #000;
    content: '';
    display: block;
    position: relative;
    z-index: 100;
}

.radios .form-check-input {
    border-radius: 50%;
}

.radios .form-check-input::after {
    border-radius: 50%;
}

.custom-file {
    /* defaultColor: #4daf7c; */
    height: 40px;

    position: relative;
    width: 100%;

    margin-top: .8rem;
    margin-bottom: .8rem;
}

.custom-file:after {
    content: attr(data-text);
    font-size: 18px;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    border: 1px solid #000;
    padding: 10px 15px;
    display: block;
    width: 100%;
    pointer-events: none;
    z-index: 20;
    height: 40px;
    line-height: 40px;
    color: #999;
    font-weight: 300;
}

.custom-file:before {
    content: 'Anexar';
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    height: 40px;
    background: #000;
    color: #fff;
    font-weight: 400;
    z-index: 25;
    font-size: 16px;
    line-height: 40px;
    padding: 0 15px;
    pointer-events: none;
}

.custom-file-input {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    height: 40px;
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    width: 100%;
}

.custom-file-label {
    z-index: 99;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

#showPassword{
    display: none;
}

.btn-enviar,
.btn-login {
    text-align: center;

    margin-top: 2.5rem;
}


.btn-enviar button,
.btn-login button {
    border: 1px solid #fff;

    box-shadow: 0;

    background: #000;
    color: #fff;

    padding: 2rem 1.8rem;

    transition-duration: 250ms;
}

.btn-login button {
    padding: 2rem 2.5rem;
}

.btn-enviar button:hover,
.btn-login button:hover {
    background: rgb(46, 46, 46);
}

footer {
    background: #000;
    color: #fff;
    font-size: 1.4rem;

    min-height: 8rem;

    padding: 1.5rem;

    display: flex;
    align-items: center;
    justify-self: flex-end;
}

footer .powered {
    height: 3.1rem;

    display: flex;
    align-items: center;
}

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

.singup {
    display: flex;
    align-items: center;
}

#formLogin {
    padding: 2.5rem;

    border: 1px solid #000;

    margin-bottom: 8rem;

    -webkit-box-shadow: 10px 10px 15px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 10px 10px 15px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 10px 10px 15px 0px rgba(0, 0, 0, 0.15);
}

.label-login {
    margin: 0;
}

.form-login {
    margin: 0;
}

.show{
    display: block;
}

.dontShow{
    display: none;
}

.text-danger{
    color: #f00;
    font-weight: 600;
}

@media only screen and (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
}

@media only screen and (max-width: 767px) {
    .principal {
        display: block;
    }

    header .main,
    header .msg,
    header .logout {
        text-align: center;
        justify-content: center;
    }

    footer .socialmedias {
        justify-content: center;
    }
}

@media only screen and (max-width: 375px) {
    footer {
        font-size: 1.1rem;
    }
    
    footer img{
        width: 70px;
    }
}