* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #f6f1e7, #efe6d8);
    font-family: "Poppins", Arial, sans-serif;
    color: #4b3b2a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Título */
h1 {
    font-family: "Pacifico", "Dancing Script", cursive;
    font-size: 2.6rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
    animation: aparecer 0.6s ease;
}

/* Formulario */
form {
    background: rgba(255, 255, 255, 0.85);
    padding: 35px 45px;
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    text-align: center;
    max-width: 420px;
    width: 100%;
    animation: aparecer 0.8s ease;
}

/* Label */
label {
    font-size: 1.2rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

/* Input texto */
input[type="text"] {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #d8c3a5;
    font-size: 1rem;
    outline: none;
    margin-bottom: 20px;
    background-color: #faf7f2;
    transition: all 0.3s ease;
}

input[type="text"]:focus {
    border-color: #c7ad88;
    box-shadow: 0 0 0 3px rgba(199, 173, 136, 0.35);
}

/* Botón */
input[type="submit"] {
    background-color: #d8c3a5;
    border: none;
    padding: 14px 30px;
    font-size: 1.05rem;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 14px rgba(0,0,0,0.18);
    width: 100%;
}

input[type="submit"]:hover {
    background-color: #c7ad88;
    transform: scale(1.06);
}

/* Animación */
@keyframes aparecer {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
