body {
    background: #191a2b;
    color: #fff;
}

.order-container {
    max-width: 500px;
    margin: 80px auto;
    background: #23244a;
    border-radius: 12px;
    box-shadow: 0 0 20px #0002;
    padding: 32px 24px;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #ff5f6d;
    margin-bottom: 24px;
    text-align: center;
}

.hidden {
    display: none;
}

.btn-primary {
    background: linear-gradient(90deg, #ff5f6d, #ffc371);
    border: none;
    color: #23244a;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #ffc371, #ff5f6d);
    color: #23244a;
}

.form-label {
    color: #ffc371;
    font-weight: 500;
}

.alert {
    font-size: 1rem;
} 