body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ffb6d9, #fff0f5);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}


.imagen-formulario img {
    width: 150px;
    height: auto;
}
section {
    background: #ffffff;
    width: 450px;
    padding: 30px;
    border-radius: 25px;
    border: 4px solid #ff69b4;
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.4);
    text-align: center;
}

.melody {
    width: 130px;
    margin-bottom: 10px;
}

h1 {
    color: #ff1493;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px #ffc0cb;
}

label {
    display: block;
    text-align: left;
    color: #000000;
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #ff69b4;
    border-radius: 12px;
    background-color: #fffafa;
    box-sizing: border-box;
    margin-bottom: 15px;
    font-size: 14px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
    outline: none;
    border-color: #ff1493;
    box-shadow: 0 0 10px #ffb6d9;
}

input[type="submit"] {
    background-color: #ff69b4;
    color: white;
    border: 2px solid #000000;
    padding: 12px 25px;
    cursor: pointer;
    margin: 10px;
    font-weight: bold;
    border-radius: 50px 50px 40px 40px;

    box-shadow:
        -12px -8px 0 #ff69b4,
        12px -8px 0 #ff69b4,
        -20px 5px 0 #ff69b4,
        20px 5px 0 #ff69b4;

    transition: all 0.3s ease;
}

input[type="submit"]:hover {
    transform: scale(1.1);
    background: #ff1493;
}

::placeholder {
    color: #888;
}