body {
    background: #f4f4f4;
    color: #111;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    border-bottom: 1px solid #ddd;
    background: white;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.inicio {
    text-decoration: none;
    color: #6b5ca5;
    font-weight: bold;
}

.contenedor {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.formulario {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 350px;
    text-align: center;
}

.formulario h1 {
    margin-bottom: 20px;
    color: #6b5ca5;
}

.formulario input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}

.formulario button {
    width: 100%;
    padding: 10px;
    background: #6b5ca5;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
    font-weight: bold;
}

.formulario button:hover {
    background: #5a4c8c;
    transform: scale(1.03);
}

.limpiar {
    background: #999 !important;
}

.limpiar:hover {
    background: #777 !important;
}

p {
    margin-bottom: 10px;
    font-weight: bold;
}