* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(to right, #af5353, #ff6f61);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: #ffffff;
    width: 600px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

h1 {
    text-align: center;
    color: #d90429;
    margin-bottom: 5px;
}

.subtitle {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.request-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #333;
}

.request-form input,
.request-form select,
.request-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
    border-color: #d90429;
}

button {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    background: #d90429;
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #b00321;
}

.toggle {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    align-items: center;
}

.switch {
    background: #e5e7eb;
    border-radius: 20px;
    width: 54px;
    height: 28px;
    position: relative;
    cursor: pointer;
    transition: background 0.25s ease;
    outline: none;
    border: none;
    flex-shrink: 0;
}

.switch::after {
    content: "";
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    transition: left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.switch:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.switch:focus {
    box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.2);
}

.switch.on {
    background: #d90429;
}

.switch.on::after {
    left: 28px;
}
.result-box{
    background:#f8f9fa;
    padding:20px;
    border-radius:10px;
    margin-top:20px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.order-btn{
    background: #d90429;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s ease;
}

.order-btn:hover{
    background:#9d0208;
    transform: scale(1.05);
}

