* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: url(imagem_fundo.jpg) no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    background-color: rgba(14, 14, 27, 0.9);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    align-items: center;
}

.nav-logo {
    font-size: 2.2rem;
    color: #66ccff;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo i {
    font-style: italic;
    margin-left: 10px;
}

.logo-img {
    width: 120px;
    height: 60px;
    margin-right: 15px;
    border-radius: 10px;
}

.nav-buttons {
    display: flex;
    gap: 20px;
}

.nav-btn {
    background-color: #1e6bba;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 10px;
}

.nav-btn:hover {
    background-color: #4d94ff;
}

.hero {
    padding: 100px 30px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    margin-bottom: 30px;
    color: darkturquoise;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.hero-content p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #eee;
    margin-bottom: 40px;
}

footer {
    background-color: #0e0e1b;
    color: #aaa;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

a{
    text-decoration: none;
    color: white;
}

input{
    border-radius: 10px;
    padding: 5px;
    width: 100%;
    margin-bottom: 8px;
}

form{
    text-align: center;
    margin: 0 auto;
    width: 300px;
    margin-top: -90px;
    margin-bottom: 50px;
    border: 4px solid #0f52ba;
    border-radius: 8px;
    background-color: #1a1a2e;
    box-shadow: 0 0 15px rgba(15, 82, 186, 0.3);
    padding: 30px;
}

label{
    font-size: 20px;
}

.btn_cadastro{
    margin-top: 20px;
}

.checkbox{
    display: flex;
    margin-left: 110px;
    margin-top: -18px;
}

footer {
    background-color: #0e0e1b;
    color: #aaa;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    margin-top:auto;
}