body {
    background-color: #fce4ec;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.contenedor {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
    text-align: center;
    width: 320px;
}

.logo {
    width: 120px;
    margin-bottom: 20px;
}

form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 10px;
    border: 1px solid #e1bee7;
    font-size: 15px;
}

form button {
    width: 100%;
    padding: 12px;
    background-color: #ec407a;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #d81b60;
}

.enlace {
    margin-top: 20px;
    font-size: 14px;
    color: #6a1b9a;
}

.enlace a {
    color: #c2185b;
    text-decoration: none;
}

.enlace a:hover {
    text-decoration: underline;
}