body {
    margin: 0;
    background: linear-gradient(45deg, #6f7075, #6f7075);
    font-family: sans-serif;
}

/* FORMULARIO */
.formulario {
    width: 300px;
    margin: 40px auto;
}

.mb-3 {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

label {
    color: white;
    margin-bottom: 5px;
    font-size: 14px;
}

.label-titulo {
    color: white;
    margin-bottom: 5px;
    font-weight: bold;
}

input, select {
    padding: 8px;
    border: none;
    border-radius: 4px;
}

button {
    padding: 10px;
    border: none;
    background-color: #00bcd4;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #0097a7;
}

/* RADIOS */
.radio-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* TABLA */
.container {
    width: 800px;
    margin: 40px auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

th, td {
    padding: 15px;
    background-color: rgba(255,255,255,0.2);
    color: white;
}

th {
    background-color: black;
    text-align: left;
}

tbody tr:hover {
    background-color: rgba(255,255,255,0.3);
}