@font-face {
    font-family: 'MBLZ-Regular';
    src: url('../fonts/MBLZ-Regular.ttf');
}

@font-face {
    font-family: 'MBLZ-Bold';
    src: url('../fonts/MBLZ-Bold.ttf');
}


body, html, * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contained {
  max-width: 1200px;
  /* margin: 0 auto; */
}

body {
    background-color: black;
    font-family: 'MBLZ-Regular', sans-serif;
    background-color: #111212;
    padding: 16px;
}

form {
    padding: 32px;
    border: 1px solid #D9D9D9;
    background-color: #000;
}

label {
    display: block;
    width: 100%;
    font-family: 'MBLZ-Bold', sans-serif;
    font-size: 18px;
    color: #FFF;
    margin-bottom: 16px;
}

input {
    width: 100%;
    padding: 8px;
    border: 1px solid #FFF;
    border-radius: 8px;
    background-color: #111212;
    color: #FFF;
    font-size: 18px;
    font-family: 'MBLZ-Regular', sans-serif;
    text-transform: uppercase;
    margin-bottom: 32px;
}

input:focus {
    outline: 1px solid #F45000;
}

input::placeholder {
    color: #FFF;
    font-size: 18px;
    font-family: 'MBLZ-Regular', sans-serif;
    text-transform: uppercase;
}

button {
    background: none; /* Removes default background color/gradient */
    color: inherit; /* Inherits text color from parent */
    border: none; /* Removes default border */
    padding: 0; /* Removes default padding */
    font: inherit; /* Inherits font styles from parent */
    cursor: pointer; /* Ensures a pointer cursor on hover */
    outline: inherit; /* Inherits outline style from parent */
  }

#submit_button {
    width: 100%;
    padding: 16px;
    background-color: #F45000;
    color: #FFF;
    font-size: 18px;
    font-family: 'MBLZ-Bold', sans-serif;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

#submit_button:hover {
    background-color: #FF6600;
}

#submit_button:active {
    background-color: #FF6600;
}

.success_message {
    color: #FFF;
    font-size: 18px;
    font-family: 'MBLZ-Regular', sans-serif;
    margin-bottom: 12px;
    margin-top: -12px;
    display: none;
}

.error_message {
    color: #F45000;
    font-size: 18px;
    font-family: 'MBLZ-Regular', sans-serif;
    margin-bottom: 12px;
    margin-top: -12px;
    display: none;
}