body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #ff758c, #ff7eb3);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #333;
}

.container {
    background: white;
    padding: 20px 25px 25px;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    width: 380px;
    text-align: center;
}

h1 {
    color: #ff4f70;
    font-size: 24px;
}

h2 {
    margin: 10px 0 20px 0;
}

p {
    font-size: 18px;
    margin: 5px 0;
}

input {
    width: calc(100% - 24px);
    margin: 10px 0;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #f3f3f3;
    font-size: 16px;
}

button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #ff4f70;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #e03e5b;
}

#crear {
    margin: 10px 0 0 0;
}

#calificar {
    margin: 10px 0 10px 0;
}

#resultado {
    margin-top: 20px;
    text-align: left;
    padding: 15px;
    background: #ffe5ec;
    border-radius: 10px;
}
