/* Colores de la paleta */
:root {
    --primary-color: #00426A;
    --secondary-color: #B86125;
    --background-color: #F5F5F5;
    --text-color: #FFFFFF;
    --hover-color: #00334F;
}

/* Estilos generales */
body {
    background-color: var(--background-color);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Estilos del formulario */
.Formulario {
    background-color: var(--primary-color);
    padding: 40px 20px; /* Aumentar el padding para agregar margen interno */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

.Formulario h2 {
    color: var(--text-color);
    margin-bottom: 20px;
}

.Formulario label {
    color: var(--text-color);
    display: block;
    margin-bottom: 8px;
    text-align: left;
}

.Formulario input {
    width: calc(100% - 20px); /* Reducir el ancho para agregar margen */
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 4px;
    margin-left: 10px; /* Agregar margen izquierdo */
    margin-right: 10px; /* Agregar margen derecho */
}

.Formulario button {
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.Formulario button:hover {
    background-color: var(--hover-color);
}

/* Estilos del enlace de registro */
p {
    color: var(--text-color);
    text-align: center;
    margin-top: 20px;
}

p a {
    color: var(--secondary-color);
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}

/* Estilos del botón de regresar */
.Formulario a button {
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.Formulario a button:hover {
    background-color: var(--hover-color);
}