* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.orders-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

h1 {
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    color: #333;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #666;
}

.orders-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
    color: #555;
}

input[type="tel"] {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    outline: none;
    transition: border 0.3s ease;
}

input[type="tel"]:focus {
    border-color: #007bff;
}

button {
    padding: 0.8rem;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}
