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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    position: relative;
    overflow: hidden;
    color: hsl(20, 14.3%, 4.1%);
}

/* Floral gradient background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        hsl(350, 35%, 97%) 0%,
        hsl(350, 35%, 95%) 25%,
        hsl(350, 35%, 97%) 50%,
        hsl(350, 45%, 75%) 75%,
        hsl(350, 35%, 95%) 100%);
    background-size: 400% 400%;
    animation: floralGradient 15s ease infinite;
    z-index: -2;
}

/* Floral pattern overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, hsl(350, 45%, 75%, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, hsl(350, 40%, 75%, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, hsl(350, 35%, 97%, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

@keyframes floralGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    text-align: center;
    background: hsl(0, 0%, 100%);
    padding: 3rem;
    border-radius: 0.75rem;
    border: 1px solid hsl(350, 20%, 85%);
    box-shadow: 0 8px 32px 0 rgba(203, 133, 135, 0.15);
    max-width: 500px;
    width: 90%;
    position: relative;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: hsl(350, 50%, 65%);
}

p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: hsl(25, 5.3%, 44.7%);
}

.login-form {
    margin-top: 2rem;
}

h2 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: hsl(20, 14.3%, 4.1%);
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: hsl(20, 14.3%, 4.1%);
    font-size: 0.875rem;
}

input {
    width: 100%;
    padding: 0.625rem 0.75rem;
    border: 1px solid hsl(350, 20%, 85%);
    border-radius: 0.375rem;
    background: hsl(0, 0%, 100%);
    color: hsl(20, 14.3%, 4.1%);
    font-size: 1rem;
    transition: all 0.2s ease;
    outline: none;
}

input:focus {
    border-color: hsl(350, 50%, 65%);
    ring: 2px solid hsl(350, 50%, 65%);
    box-shadow: 0 0 0 2px hsl(350, 50%, 65%, 0.1);
}

input::placeholder {
    color: hsl(25, 5.3%, 44.7%);
}

button {
    width: 100%;
    padding: 0.625rem 1rem;
    background-color: hsl(350, 50%, 65%);
    color: hsl(0, 0%, 98%);
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

button:hover {
    opacity: 0.9;
    box-shadow: 0 4px 12px rgba(203, 133, 135, 0.3);
}

button:active {
    transform: translateY(1px);
}
