body {
    font-family: sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; 
}

nav {
    background-color: rgb(2, 3, 129);
    color: white;
    padding: 10px;
    width: 100%; 
    position: fixed; 
    top: 0; 
    z-index: 100; 
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; 
    justify-content: center; 
    align-items: center;
}

nav li {
    margin: 0 15px; 
}

nav a {
    color: white;
    text-decoration: none;
    padding: 8px 12px; 
    border-radius: 4px; 
    transition: background-color 0.3s ease; 
}

nav a:hover {
    background-color: rgb(147, 249, 245);
    color:#000;
}

.login-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 350px; 
    margin-top: 60px; 
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 35px;
    color: rgb(2, 3, 129);
    font-weight: 800;
}

.input-group { 
    margin-bottom: 15px;
}

label {
    display: block; 
    margin-bottom: 5px;
    color: #000;
}



#nome{
    width: 100%;
    height: 30px;
}
#descricao{
    width: 100%;
    resize: none;
    
}

select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
}

select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

#username,#password{
    width: 100%;
    height: 30px;
}

button {
    width: 100%;
    padding: 10px;
    background-color:  rgb(2, 3, 129);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

.error-message { 
    color: red;
    margin-top: 10px;
}


/*Responsividade*/

@media (max-width: 400px) {
    .login-container {
        width: 90%; 
    }
}