*,
html {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: "Special Elite", cursive;
    background-image: url("../images/background.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    color: white;
}
.content-middle-wrapper {
    padding: 50px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh !important;
    overflow: auto;
}

.email-form {
    background-color: rgba(0, 0, 0, 0.75);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #fff;
}

.btn-email-submit {
    width: 100%;
    background-color: #bf0000;
    color: #fff;
    height: 60px;
    border-radius: 20px;
}
.btn-email-submit:hover {
    background-color: #6e0808;
}
.required-elements input.form-control {
    width: 100%;
    border-radius: 20px;
}
.email-form input.form-control {
    background-color: transparent;
    border-radius: 20px;
    height: 60px;
    color: #fff;
    font-size: 16px;
}
.email-form label {
    font-size: 20px;
    color: #bf0000;
}
.line {
    height: 1px;
    width: 50%;
    background-color: #fff;
}
.email-form .social-links {
    margin-top: 30px;
}
.email-form .social-links .social-links-heading {
    display: flex;
    font-size: 20px;
    justify-content: space-between;
    align-items: center;
}
.email-form .social-links .links {
    display: flex;
    font-size: 20px;
    margin: 30px 0;
    align-items: center;
}
.email-form .social-links .links .input-group:not(:first-child) {
    margin-left: 10px;
}
.email-form .social-links .links .input-group-text {
    border-radius: 20px;
    background-color: transparent;
    border: none;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.email-form .social-links .links .input-group-text.social-icon img {
    width: 30px;
    height: 30px;
}
.email-form .social-links .links input.form-control {
    border-left: none;
}

.concert-logo-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}
.concert-logo {
    position: absolute;
    bottom: 0;
    right: 0;
}
.concert-logo img {
    width: 200px;
    height: auto;
}

.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select,
.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    border-top-right-radius: "20px" !important;
    border-bottom-right-radius: "20px" !important;
}

/* tank you page */

.content-middle-wrapper-thankyou {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thankyou-card-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.thankyou-card {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.75);
    width: 100%;
    max-width: 700px;
    height: 350px;
    border: 1px solid #fff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.thankyou-card h1 {
    font-size: 30px;
}
.thankyou-card .thankyou-logo {
    width: 150px;
    height: 150px;
}
.thankyou-card .thankyou-logo img {
    width: 100%;
    height: auto;
}
.btn-visit {
    background-color: #bf0000;
    color: #fff;
    border-radius: 20px;
    height: 75px;
    font-size: 20px;
    padding: 20px;
}
.btn-visit i {
    margin-left: 15px;
}
.btn-visit:hover {
    background-color: #6e0808;
}
