* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    min-height: 100vh;
}

.button {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}

.button.primary {
    background-color: #e53e3e;
    color: white;
}

.button.primary:hover {
    background-color: #c53030;
}

.button.secondary {
    background-color: #fff5f5;
    color: #e53e3e;
    border: 1px solid #e53e3e;
}

.button.secondary:hover {
    background-color: #fed7d7;
} 