

button {
    width: 100%;
    padding: 14px;
    margin-top: 14px;
    background: #2563eb;
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease;
}

body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: #f2f5f9;
    color: #1f2937;
    padding: 16px;
    min-height: 100vh;
}


button:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.container {
    width: 100%;
    background-color: #eec;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(88, 95, 111, 0.12);
    flex-direction: row;
}

.hero {
    padding: 28px 24px 20px;
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    color: white;
}
.hero h1 {
    margin: 0 0 8px;
    font-size: 1.75rem;
}
.hero p {
    margin: 0;
    line-height: 1.5;
    opacity: 0.95;
}
