body {
    background-color: #f8f9fa;
    background-image: url("background.png");
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 600px;
    margin-top: 50px;
}

.form-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo img {
    max-width: 150px;
    margin-bottom: 15px;
}

.coupon-code {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background-color: #E94D1A;
    border-radius: 5px;
}

.code-display {
    font-size: 24px;
    font-weight: bold;
    color: #0d6efd;
    margin: 10px 0;
    padding: 10px;
    border: 2px dashed #E94D1A;
    border-radius: 5px;
    background-color: white;
}

.submissions-left {
    font-size: 14px;
    color: #6c757d;
    margin-top: 10px;
}

.btn-primary {
    width: 100%;
    padding: 10px;
    font-weight: bold;
    background-color: #E94D1A;  /* Orange color */
    border-color: #E94D1A;     /* Matching border */
}

/* Custom orange button class */
.btn-orange {
    background-color: #E94D1A;
    border-color: #E94D1A;
    color: orange;
}

.btn-orange:hover {
    background-color: #E94D1A;
    border-color: #E94D1A;
    color: orange;
}


/* Terms and conditions */
.form-check-label a {
    text-decoration: none;
    color: #E94D1A;
}

.form-check-label a:hover {
    text-decoration: underline;
}



.invalid-feedback {
    display: none;
    color: #dc3545;
}

.was-validated .form-control:invalid ~ .invalid-feedback {
    display: block;
}