nav{
    background-color: #001f40; 
    padding: 6px;
    display: flex;
    justify-content: flex-end;
}
nav a {
    margin-right: 20px;
    border-bottom: 0.5px solid transparent; 
}

nav a:hover {
    border-color: yellow; 
}

.logo {
    text-align: center;
    margin-top: 20px;
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('https://populationeducation.org/wp-content/uploads/2022/07/large-factory.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
}

body::-webkit-scrollbar {
    display: none;
}

.cadastro-container {
    display: flex;
    margin-top: 40px;
    margin-bottom: 35px;
}

.cadastro_form {
    min-height: 680px; width: 325px;
    margin: auto;
    margin-bottom: 35px;
    padding: 15px 40px;
    padding-right: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    border: groove 3.5px whitesmoke;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.login-container {
    display: flex;
    margin-top: 40px;
    margin-bottom: 35px;
}

.login_form{
    text-align: center;
    min-height: 350px; min-width: 350px;
    margin: auto;
    margin-bottom: 35px;
    padding: 15px 40px;
    padding-right: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    border: groove 3.5px whitesmoke;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);

}

label {
    color: whitesmoke
}

.titulo-cadastro{
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 10px;
    height: 45px; width: 220px;
    margin-top: 15px;
    margin-left: 42px;
    margin-bottom: 30px;
    color: rgb(255, 183, 0);
    text-align: center;
    background-color: rgb(51, 51, 213);
    border: 1px solid whitesmoke;
    border-radius: 10px;
    box-shadow: 0 0 8px 0px rgba(255, 255, 255, 2.1);

}

.titulo-login{
    font-family: Arial, sans-serif;
    padding-top: 10px;
    height: 45px; width: 160px;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    color: rgb(50, 50, 170);
    text-align: center;
    background-color: rgb(255, 183, 0);
    border: 4px solid grey;
    border-radius: 10px;
    box-shadow: 0 0 8px 0px rgba(255, 255, 255, 2.1);
    
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="file"]
 {  
    width: 85%;
    padding: 5px;
    margin-bottom: 15px;
    border: solid rgb(103, 103, 103);
    border-radius: 2px;
    background-color: whitesmoke;
    color: #333;
}

.link{
    color: white;
    font-style: italic;
    text-decoration: underline;
}

.link:hover{
    text-decoration: underline;
    color:rgb(233, 202, 27);
}

.link-cadastro{
    margin-top: 20px;
    text-align: center;

}

.user_icon,
.password_icon {
      font-size: 30px;
      vertical-align: middle;
      padding: 4px 6px;
      border-radius: 5px;
      background-color: rgb(19, 19, 225);
}

input[name="usuario-login"],
input[name="senha-login"]
{
    width:50%;
    margin-bottom: 20px;
    padding: 10px;
    margin-left: 4px;
    
}

.login_inputs{
     margin-top: 30px;
     margin-right: 30px;
        
}

.input-login::placeholder,
.input-senha::placeholder
{
  font-style: italic;
}

.botao-cadastrar {
    background-color: rgb(255, 247, 0);
    font-size: 20px;
    font-weight: bolder;
    padding: 5px 100px;
    margin-left: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

button:hover {
   
    
}

.login-button {
    background-color:blue;
    color: #fff;
    font-size: large;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;

}

footer{
    margin: 0;
    background-color: black;
    color: white;
    padding: 2px;
    text-align: center;
    font-size: smaller;
}

@media (max-width: 980px) {
    nav a {
        margin-right: 20px;
    }
    .logo img {
        margin-top: 25px;
        margin-bottom: 25px;
        max-width: 80%; 
        height: auto;
    }
    .cadastro_form{
        max-width: 75%;
    }
    .login_form{
        max-width: 75%;
    }
    .titulo-cadastro{
        margin-left: auto;
        margin-right: auto;
    }
    .titulo-login{
        margin-left: auto;
        margin-right: auto;
    }
    
   
}

