/* Resetando margens e paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #67b8d4;
    --secondary-color: #2b4c60;
    --text-color: #333;
    --background-color: #f0f8ff;
    --font-primary: 'Arial', sans-serif;
    --font-secondary: 'Segoe UI', sans-serif;
}

/* Corpo do documento */
body {
    font-family: var(--font-primary);
    background-color: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

/* Títulos */
.main-title, h2 {
    font-family: var(--font-secondary);
    text-align: center;
    color: var(--secondary-color);
}

.main-title {
    font-size: 40px;
    font-weight: 700;
    margin: 50px 0 20px;
    letter-spacing: 1px;
}

h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    color: var(--text-color);
}

/* Seção de Login */
.login-section {
    width: 100%;
    max-width: 420px;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Campos de Input */
.input-group {
    width: 100%;
    margin-bottom: 25px;
}

label {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.3s ease-in-out;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    border-color: var(--primary-color);
}

/* Botão de Login */
button {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #539cb1;
}

/* Links de Navegação */
.login-links {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.login-links a {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.login-links a:hover {
    text-decoration: underline;
}

/* Rodapé */
.footer {
    margin-top: 40px;
    text-align: center;
    font-size: 12px;
    color: #888;
}
