body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('/logo2.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    color: #ffffff;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.90);
    z-index: -1;
}

.order-container {
    background-color: rgba(30, 30, 30, 0.9);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

h1 {
    color: #ffcc00;
    font-size: 26px;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    color: #dddddd;
    margin-bottom: 25px;
}

.cancel-rules {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 15px;
    border-left: 4px solid #ffcc00;
}

.cancel-rules p {
    color: #ffcc00;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cancel-rules p::before {
    content: "📌";
    font-size: 18px;
}

.cancel-rules ul {
    list-style: none;
    padding-left: 0;
    font-size: 14px;
    color: #dddddd;
}

.cancel-rules li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cancel-rules li:nth-child(1)::before { content: "✅"; }
.cancel-rules li:nth-child(2)::before { content: "⚠️"; }
.cancel-rules li:nth-child(3)::before { content: "📧"; }

.form-group {
    display: flex;
    align-items: center;
    background: #1e1e1e;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    max-width: 340px;
    margin: 0 auto 20px auto;
    border: 1px solid #444;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
}

.form-group:focus-within {
    border-color: #ffcc00;
    box-shadow: 0 0 8px #ffcc00;
}

.form-group i {
    font-size: 16px;
    color: #ccc;
    margin-right: 10px;
    padding-left: 5px;
    transition: color 0.3s ease-in-out;
}

.form-group:focus-within i {
    color: #ffcc00;
}

.form-group input {
    flex-grow: 1;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    padding: 8px;
    width: 100%;
    box-sizing: border-box;
}

.form-group input::placeholder {
    color: #bbbbbb;
    font-size: 13px;
}

button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #ffcc00;
    color: #121212;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
    font-size: 16px;
    margin-top: 15px;
}

button i {
    font-size: 18px;
    margin-right: 5px;
}

button:hover {
    background-color: #b38f00;
}

.success-message {
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #333333;
    border-radius: 12px;
    font-size: 16px;
    text-align: center;
}

.back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    color: #121212;
    background-color: #ffcc00;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
    margin-top: 15px;
    gap: 8px;
}

.back-button i {
    font-size: 16px;
}

.back-button:hover {
    background-color: #b38f00;
}
