body {
    font-family: sans-serif;
    background-color: #906ea1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: black;
}

label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

input[type="text"],
input[type="password"],
select {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 14px;
}

.radio-group {
    margin-top: 10px;
    display: flex;
    gap: 20px;
}

.radio-group label {
    font-weight: normal;
}

.checkbox-group {
    margin-top: 15px;
}

.checkbox-group label {
    font-weight: normal;
}

input[type="button"] {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background-color: #ae8dbe;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

input[type="button"]:hover {
    background-color: #825c95;
}

#datos {
    margin-top: 30px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 100%;
    color: #333;
    line-height: 1.6;
}
