﻿body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}
form{
width:  900px !important;
max-width: 90% !important;
margin: auto !important;
}

h2 {
    text-align: center;
    color: #FEA002 !important;
    margin-bottom: 25px;
}
p{
color: #000 !important;
}
img{
margin-top:20px;
margin-bottom: 20px;
}
fieldset {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

legend {
    font-weight: bold;
    color: #555;
    padding: 0 10px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #444;
}
.order-table tr td {
    border-width: 1px !important;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding in width calculation */
}

input[type="number"] {
    width: 80px; /* Adjust width for quantity inputs */
    margin-right: 10px;
}

.item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .item label {
        flex-grow: 1;
        margin-bottom: 0;
    }

.price {
    font-style: italic;
    color: #777;
}

.summary {
    text-align: right;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
    color: #000000 !important;
}

button[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    width: 100%;
    transition: background-color 0.3s ease;
}

    button[type="submit"]:hover {
        background-color: #0056b3;
    }
