/* Estilos generales */
body {
    font-family: 'Arial', sans-serif;
    background-color: #2C3E50;
    color: #ECF0F1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Contenedor principal */
.container {
    background: #34495E;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

/* Título */
h1 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Formularios */
form {
    display: flex;
    flex-direction: column;
}

input {
    padding: 10px;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background: #1ABC9C;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #16A085;
}

/* Resultado */
#resultado {
    margin-top: 20px;
    padding: 15px;
    background: #22313F;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#resultado h2 {
    font-size: 20px;
}

p {
    margin: 5px 0;
}

#calificar {
    background: #E74C3C;
}

#calificar:hover {
    background: #C0392B;
}
