@charset "UTF-8";

* {
box-sizing: border-box;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
padding: 0;
scroll-behavior: smooth;
}
::-moz-placeholder {
color: #fff;
}
::placeholder {
color: #fff;
}
.navigation-container {
max-width: 100%;
margin: 0;
padding: 50px;
}
.navigation-menu {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
background-color: transparent; transition: background-color 0.5s; padding-block: 15px;
position: fixed;
top: 0;
z-index: 9999;
width: 100%;
}
.navigation-menu a {
text-decoration: none;
color: #FFF;
text-transform: uppercase;
font-size: 16px;
padding: 10px;
font-weight: bold;
}
.navigation-menu a.aluno {
background: #fff;
border-radius: 5px;
color: #005198;
}
.navigation-menu a.aluno:hover {
color: #cdcdcd;
}
.site-identity-logo h1 img {
width: 100%;
max-width: 50px;
}
.site-identity-logo:hover {
color: #2E77E5;
}
.navigation-menu__labels {
list-style: none;
display: flex;
gap: 10px;
}
.navigation-menu__labels > li > a:hover {
color: #2E77E5;
}
#toggleMenu,
.navigation-menu label {
display: none;
}
@media screen and (max-width: 991px) {
.main-menu {
width: 100%;
max-height: 0;
overflow: hidden;
opacity: 1;
}
.navigation-menu label {
display: inline-flex;
align-items: center;
cursor: pointer;
color: #000;
}
}
@media screen and (max-width: 991px) and (max-width: 991px) {
.navigation-menu label li a {
border-bottom: 1px solid #fff;
width: 100%;
text-align: center;
padding: 0 0 25px;
}
}
@media screen and (max-width: 991px) {
.navigation-menu__labels {
flex-direction: column;
align-items: center;
gap: 45px;
font-size: 32px;
margin-top: 10px;
padding: 20px;
background: #005198;
}
#toggleMenu:checked ~ .main-menu {
height: 100vh;
max-height: 100vh;
}
.navigation-menu label i {
color: #FFF;
font-size: 30px;
}
}
.topnav {
overflow: hidden;
background-color: #333;
display: flex;
justify-content: space-around;
align-items: center;
}
.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #04AA6D;
color: white;
}
.topnav .icon {
display: none;
}
@media screen and (max-width: 600px) {
.topnav a:not(:first-child) {
display: none;
}
.topnav a.icon {
float: right;
display: block;
}
}
@media screen and (max-width: 600px) {
.topnav {
display: block;
}
.topnav.responsive {
position: relative;
}
.topnav.responsive .icon {
position: absolute;
right: 0;
top: 0;
}
.topnav.responsive a {
float: none;
display: block;
text-align: left;
}
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
}
.space {
padding: 80px 0;
}
.space-top {
padding: 80px 0 0;
}
.space-bottom {
padding: 0 0 80px;
}
#custom-login-form {
height: 100vh;
width: 100%;
display: flex;
flex-direction: column;
align-content: center;
justify-content: center;
align-items: center;
background-color: rgb(0, 81, 152);
}
#custom-login-form .error-box {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #333333;
color: #fff;
padding: 50px;
border-radius: 5px;
font-size: 22px;
z-index: 99999;
}
#custom-login-form .error-box span {
position: absolute;
top: 0;
right: 0;
background: #fff;
padding: 5px;
color: #333333;
cursor: pointer;
}
#custom-login-form .error-box span:hover {
color: red;
}
#custom-login-form .box-form {
background: rgba(255, 255, 255, 0.2);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);
padding: 35px;
}
#custom-login-form .box-form h2 {
padding-bottom: 25px;
color: #fff;
font-weight: bolder;
text-transform: uppercase;
}
#custom-login-form .box-form form {
display: flex;
flex-direction: column;
gap: 30px;
width: 100%;
max-width: 300px;
}
@media (max-width: 991px) {
#custom-login-form .box-form form {
max-width: 225px;
}
}
#custom-login-form .box-form form .box {
display: flex;
flex-direction: column;
}
#custom-login-form .box-form form .box label {
color: #fff;
}
#custom-login-form .box-form form .box input {
padding: 8px 0;
border: unset;
border-bottom: 1px solid #fff;
color: #fff;
background: transparent;
}
#custom-login-form .box-form form input[type=submit] {
width: 100%;
max-width: 100px;
border-radius: 5px;
border: 1px solid #fff;
padding: 5px;
margin: auto;
font-weight: bolder;
text-transform: uppercase;
color: #005198;
text-align: center;
}
#custom-login-form .box-form form input[type=submit]:hover {
background: #005198;
color: #fff;
}
footer {
margin: -78px 0 0;
background-color: #333;
color: #fff;
text-align: center;
padding: 30px;
}