.page_body_wrapper {
    position: relative;
    margin-top: 120px;
    text-align: center;
    padding-top: 2px;
    margin-bottom: 20px;
    padding-bottom: 40px;
}

.category_header h1 {
    font-size: 48px;
}

.category_header h2 {
    font-size: 20px;
}



.order_form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form_item_wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.helper_text {
    display: block;
    font-size: 0.85rem;
    color: #555;
    margin-top: 0.25rem;
    font-weight: normal;
}

input,
textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

.order_form button[type="submit"] {
    background-color: #333;
    color: #fff;
    padding: 1rem 3rem;
    font-size: 1.25rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin: 2rem auto 0;
    width: 100%;
    max-width: 300px;
}

    .order_form button[type="submit"]:hover {
        background-color: #555;
        transform: scale(1.02);
    }

	.order_form button[type="submit"]:active {
    	transform: scale(0.98);
	}