body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    color: #333;
    margin: 0;
    padding: 20px;
    text-align: center;
    overflow-x: hidden;
}

.login-container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 100px auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #e91e63;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 2px solid #e91e63;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #d81b60;
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.3);
}

button {
    background-color: #e91e63;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #d81b60;
    transform: translateY(-2px);
}

.error-message {
    color: #d81b60;
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    background-color: rgba(233, 30, 99, 0.1);
    display: none;
}

#hearts-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 4em;
    color: #e91e63;
    margin-bottom: 0.2em;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    color: #d81b60;
    margin-top: 0;
    border-bottom: 2px solid #f48fb1;
    display: inline-block;
    padding-bottom: 5px;
}

#reasons-list {
    list-style-type: none;
    padding: 0;
    text-align: left;
    columns: 2;
    column-gap: 40px;
}

#reasons-list li {
    background-color: #fff3e0;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    font-size: 1.1em;
    transition: transform 0.2s;
}

#reasons-list li:hover {
    transform: scale(1.05);
    background-color: #ffe0b2;
}

@media (max-width: 600px) {
    #reasons-list {
        columns: 1;
    }
    h1 {
        font-size: 3em;
    }
}
