@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #f5e6dc, #fff8f3);
    margin: 0;
    padding: 0;
    color: #3e2c23;
}

.container {
    max-width: 800px;
    margin: 60px auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

h1 {
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

h2 {
    margin-top: 40px;
    font-weight: 600;
}

form {
    margin-top: 20px;
}

input, select, button {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    border-radius: 12px;
    border: 1px solid #e0d4cc;
    font-size: 15px;
}

button {
    background: #b4846c;
    color: white;
    border: none;
    font-weight: 600;
    transition: 0.2s;
}

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

.order-box {
    background: #fff4ec;
    padding: 20px;
    margin-top: 20px;
    border-radius: 16px;
    border: 1px solid #f1d8cb;
}

