/*----------------NOTIFICATION, CONTACT, PAYMENT---------------------------*/
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

.banner-container {
    width: 100%;
    height: 45vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0; /* Remove any margin */
}

.banner {
    width: 100%;
    height: auto;
}

main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    background: #000;
    min-height: calc(100vh - 80px);
}

.notice-container {
    background-color: #0f1218;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    margin: auto;
    text-align: center;
    z-index: 1; /* Ensure it stays above other elements */
}

.form-container {
    background-color: #0f1218;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin-top: -30vh;
    z-index: 1;
}

h2 {
    margin-bottom: 20px;
}

.btn {
    background: rgb(254, 182, 7);
    background: linear-gradient(0deg, rgba(254, 182, 7, 1) 3%, rgba(253, 205, 8, 1) 76%);
    color: #111;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.btn:hover {
    background: #141414;
    color: #ececec;
    border: Solid 1px #ffc80a;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.btn2 {
    background: linear-gradient(0deg, #8900e3 3%, #a829ff 76%); !important;
    color: #111; !important;
}

.btn2:hover {
    background-color: #141414; !important;
    color: #ececec; !important;
    border: Solid 1px #9900ff; !important;
}

.links {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.links a {
    color: #FFC107;
    text-decoration: none;
}

.message {
    color: #FFC107;
    line-height: 24px;
    margin-top: 0;
}

/*------------------------CONTACT-------------------------*/
.contact-container {
    background-color: #1c1c1c;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin-top: -150px;
    z-index: 1;
}


input[type="email"],
input[type="text"] {
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
    width: 100%;
}

textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
    width: 100%;
    min-height: 150px
}

.hint {
    padding-bottom: 20px;
    color: #FFC107;
    font-size: 14px;
}

label {
    align-self: flex-start;
    margin-bottom: 5px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

