
.hero {
    width: 100%;
    height: 100vh;
    background: url(../img/bg5.jpg) top center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 15px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        height: 45vh;
        background-position: right center;
        align-items: end;
    }
}

@media (min-width: 769px) {
    .hero {
        background-attachment: fixed;
    }

    .hero h1 {
        font-size: 38px;
        font-weight: 700;
        color: #530D47;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 20px;
        color: #2B2B2B;
        line-height: 28px;
        margin: 0 auto;
    }
}

.box-new {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    border: none!important;
}

.box p {
    font-size: 18px;
    color: #2B2B2B;
    line-height: 26px;
}

/* Custom Form */
.custom-form {
    background-color: #F0EFF4;
    color: #2B2B2B;
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
}

.form-control::placeholder {
    color: #2B2B2B;
    opacity: 1;
}

.buton{
    font-weight: bold;
    background-color: #F93E3B;
    color: #fff;
    border-radius: 6px;
    padding: 12px 60px;
}

.buton:hover{
    background-color: #cc110d;
    color: #fff;
}

.box-prize{
    border: 2px solid #F0EFF4;
    padding: 30px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.selected {
    border-color: #007bff !important;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.box-prize:hover{
    border: 2px solid darkred;
}

input[type="radio"] {
    display: none;
}
