/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(180deg, #f5faff, #dbefff);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Contêiner principal */
.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px 25px;
    text-align: center;
}

/* Logo e título */
.logo img {
    width: 50px;
    margin-bottom: 10px;
}

.logo h2 {
    font-size: 24px;
    color: #2d3e50;
}

.logo p {
    font-size: 14px;
    color: #7a7a7a;
}

/* Campos de formulário */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    font-size: 14px;
    color: #333;
    font-family: monospace;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 5px;
    font-size: 14px;
}

/* Opções de formulário */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.form-options label {
    display: flex;
    align-items: center;
}

.form-options input {
    margin-right: 5px;
}

.forgot-password {
    color: #4285f4;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Botão de login */
.btn-login {
    width: 100%;
    background-color: #4285f4;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-login:hover {
    background-color: #357ae8;
}

/* Link de inscrição */
.signup-link {
    font-size: 14px;
    color: #7a7a7a;
    margin-top: 20px;
}

.signup-link a {
    color: #4285f4;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

.mt35{
    margin-top: 35px !important;
}