@import url('variaveis.css');

/* 1. RESET GERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
    list-style: none;
}

body {
    background:#84B6E3; 
}

/* 2. ESTILIZAÇÃO DO TOPO (NAVBAR) */
.navbar {
    background-color: #001F3F; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    color: white;
}

.logo {
    font-weight: bold;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn-nav-blue, .btn-nav-dark {
    padding: 8px 25px;
    border-radius: 8px;
    font-weight: bold;
    color: white;
    font-size: 14px;
}

.btn-nav-blue {
    background-color: #0044CC;
}

.btn-nav-dark {
    background-color: #00152e;
}

/* 3. LAYOUT PRINCIPAL */
.container {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: flex-start;
}

.left-side {
    flex: 1.2;
}

h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: bold;
}

.subtitle {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 35px;
    max-width: 480px;
}

/* 4. BOTÕES DE CRIAR CONTA */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.btn-main {
    width: fit-content; 
    padding: 10px 30px; 
    background-color: #6395ED;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: block; 
    border: none;
    cursor: pointer;
    text-align: center;
}

/* 5. CAIXA DE LOGIN */
.login-box {
    background-color: #6395ED;
    padding: 30px;
    border-radius: 15px;
    width: 420px;
}

.login-box h3 {
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.input-group label {
    width: 70px;
    font-weight: bold;
}

.input-group input {
    flex: 1;
    background-color: #D3D3D3;
    border: none;
    border-radius: 8px;
    padding: 10px;
    outline: none;
}

.btn-entrar {
    display: block;
    margin: 15px auto 0;
    background-color: #4CAF50;
    color: white;
    padding: 10px 45px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
}

/* 6. LADO DIREITO (IMAGEM E LISTA) */
.right-side {
    flex: 1;
}

.image-box img {
    width: 100%;
    border-radius: 15px 15px 0 0;
    display: block;
}

.features-container {
    background-color: #6395ED;
    padding: 25px;
    border-radius: 0 0 15px 15px; 
    color: white;
}

.features-list li {
    font-size: 1.15rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.features-list li::before {
    content: '✔';
    color: #1b5e20;
    font-weight: bold;
    margin-right: 12px;
}

