
body {
    font-family: Arial, sans-serif;
    background-color: #3406b3;
    margin: 0;
    padding: 0;
    display: flex;               
    justify-content: center;     
    align-items: center;         
    height: 100vh;              
}

form {
    background-color: #430349;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(122, 185, 4, 0.1);
    width: 100%;
    max-width: 400px;          
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    display: inline-block;
}

#nombre, #email, #apellidos, #Contraseña {
    width: 100%;
    padding: 10px;
    margin: 10px 0 20px 0;
    border: 1px solid #380661;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #131f66;
    color: rgb(216, 240, 7);
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

input[type="submit"]:hover {
    background-color: #054ed6;
}
