body {
    background-image: url("../img/discount-bg.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.discount-section {
    padding-top: 8rem;
}

.page-text {
    font-size: 18px;
    font-weight: 500;
}

.statement {
    margin-bottom: 4rem;
    padding: 0 10rem;
    text-align: center;
    color: #333;
}

.discount-form-container {
    width: 35%;
}

.discount-section .form-title {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 2rem;
}

.discount-section .form-title span {
    font-size: 24px;
    font-weight: bold;
    color: #444;
}

.discount-section .form-title-icon {
    width: 30px;
    text-align: center;
    margin: 0 auto;
}

.discount-form-container form {
    width: 100%;
}

.container small.text-muted {
    display: block;
    margin-top: 1rem;
    font-size: 14px;
    text-align: center;
}

.discount-container {
    padding: 20px;
    border: 2px solid #d4af37;
    background-color: #fdfcf7;
    border-radius: 10px;
    text-align: center;
}

.discount-container h2 {
    color: #d4af37;
}

.discount-container p {
    font-size: 18px;
    color: #333;
}

.discount-code {
    font-size: 24px;
    font-weight: bold;
    color: #d4af37;
    background-color: #fff;
    padding: 10px 20px;
    border: 2px dashed #d4af37;
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
}

.discount-container .subtext {
    font-size: 16px;
    color: #666;
    font-style: italic;
}

.discount-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    color: #fff;
    background-color: #d4af37;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.discount-btn:hover {
    background-color: #c39b30;
    text-decoration: none;
    color: #fff;
}

@media screen and (max-width: 1024px) {
    .discount-form-container {
        width: 50%;
    }
}

@media screen and (max-width: 768px) {
    .statement {
        padding: 0;
    }

    .discount-form-container {
        width: 75%;
    }
}

@media screen and (max-width: 460px) {
    .discount-section .form-title span {
        font-size: 20px;
    }

    .discount-form-container {
        width: unset;
    }
}
