body {
    font-family: "Poppins", sans-serif;
    background-color: #fff6f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 400px;
}

/* 🌸 Logo circular con borde rosado glam */
.logo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff99cc; /* borde rosado */
    box-shadow: 0 0 10px rgba(255, 153, 204, 0.5);
    margin-bottom: 20px;
}

h2 {
    color: #ff66b3;
    margin-bottom: 20px;
}

label {
    display: block;
    text-align: left;
    margin-top: 15px;
    color: #333;
    font-weight: 500;
}

input {
    width: 100%;
    padding: 10px;
    border: 2px solid #ffd6e8;
    border-radius: 10px;
    margin-top: 5px;
    font-size: 15px;
    transition: 0.3s;
}

input:focus {
    border-color: #ff66b3;
    outline: none;
}

button {
    background-color: #ff99cc;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    margin-top: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

button:hover {
    background-color: #ff66b3;
}

p {
    margin-top: 20px;
    color: #555;
}

a {
    color: #ff66b3;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* 📱 Adaptable a celular */
@media (max-width: 480px) {
    .container {
        padding: 25px;
    }

    .logo img {
        width: 90px;
        height: 90px;
        border: 3px solid #ff99cc;
    }
}
