* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

/* Carregar */
#loading {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    opacity: 0.7;
    background-color: #fff;
    z-index: 9999;
  }

  #loading-image {
    position: absolute;
    top: calc(50% - 90px);
    left: calc(50% - 400px);
    z-index: 9998;
  }
/* /Carregar */

/* TOPO */
.navbar{
    background: #00467c;
}

label.logo {
    color: white;
    font-size: 30px;
    line-height: 80px;
    padding: 0 20px;
    font-weight: bold;
}


nav ul li a, form a{
    color: white;
    font-size: 17px;
    margin: 2.5px;
    padding: 7px;
    border-radius: 3px;
    text-transform: uppercase;
}

.link a:hover {
    background: #1b9bff;
    transition: 0.5s;
}
/* /TOPO */

/* LOGIN */
.body {
    margin-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(165, 162, 162);
    padding: 30px;
}

.containerlogin {
    position: relative;
    max-width: 850px;
    width: 100%;
    background: #fff;
    padding: 40px 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    perspective: 2700px;
}

.containerlogin .cover {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 50%;
    z-index: 98;
    transition: all 1s ease;
    transform-origin: left;
    transform-style: preserve-3d;
}

.containerlogin .cover::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #083078;
    opacity: 0.5;
    z-index: 100;
}

.containerlogin #flip:checked~.cover {
    transform: rotateY(-180deg);
}

.containerlogin .cover img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 12;
    backface-visibility: hidden;
}

.containerlogin .cover .back .backImg {
    transform: rotateY(180deg);
}

.containerlogin form {
    height: 100%;
    width: 100%;
    background: #fff;
}

.containerlogin .form-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.containerlogin .login-form,
.containerlogin .signup-form {
    width: calc(100% / 2 - 25px);
    /* background: red; */
}

form .form-content .title {
    position: relative;
    font-size: 24px;
    font-weight: 500;
    color: #333;
}

form .form-content .title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 25px;
    background: #083078;
}

form .signup-form .form-content .title::before {
    width: 20px;
}

form .form-content .input-boxes {
    margin-top: 30px;
}

form .form-content .input-box {
    display: flex;
    align-items: center;
    height: 50px;
    width: 100%;
    margin: 10px 0;
    position: relative;
}

.form-content .input-box input {
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.form-content .input-box input:focus,
.form-content .input-box input:valid {
    border-color: #083078;
}

.form-content .input-box i {
    position: absolute;
    color: #083078;
    font-size: 17px;
}

form .form-content .texto a{
    font-size: 14px;
    font-weight: 500;
    color: #083078;
}

form .form-content .texto a {
    text-decoration: none;
}

form .form-content .texto a:hover {
    text-decoration: underline;
}

form .form-content .button {
    color: #fff;
    margin-top: 40px;
}

form .form-content .button input {
    color: #fff;
    background: #083078;
    border-radius: 6px;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s ease;
}

form .form-content .button input:hover {
    background: #031b47;
}

form .form-content label {
    color: #031b47;
    cursor: pointer;
}

form .form-content label:hover {
    text-decoration: underline;
}

form .form-content .sign-up-text,
form .form-content .login-text {
    text-align: center;
    margin-top: 25px;
}

.containerlogin #flip {
    display: none;
}

@media (max-width: 730px) {
    .containerlogin .cover {
        display: none;
    }

    .form-content .login-form,
    .form-content .signup-form {
        width: 100%;
    }

    .form-content .signup-form {
        display: none;
    }

    .containerlogin #flip:checked~form .signup-form {
        display: block;
    }

    .containerlogin #flip:checked~form .login-form {
        display: none;
    }
}

/* /LOGIN */

/* RODAPÉ */
.footer {
    padding: 40px 0;
    background: #00467c;
}

.footer ul {
    margin-top: 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}

.footer ul a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.footer ul li {
    display: inline-block;
    padding: 0 15px;
}

.footer ul li a:hover {
    opacity: 1;
    padding: 12px;
    border-radius: 15%;
}

.footer .copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

/* /RODAPÉ */