.banner-image{
  width: 100%;
  height: auto;
  display: block;
}

#content{
    background-image: url("/src/banner_empty.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    aspect-ratio: 1920/1080;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content-container {
    background-color: rgb(255,255,255,0.8);
    padding: 4rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); /* Equivalent to shadow-lg */
    width: 100%;
    max-width: 60rem;
    box-sizing: border-box;
}

.content-container h2{
    font-size: 5rem;
    font-weight: 800;
    color: #374151;
    margin-bottom: 2rem;
}

.content-container h3{
    font-size: 3rem;
    font-weight: 600;
    color: #374151;
}

#form{
    background-image: url("/src/banner_empty.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    aspect-ratio: 1920/1080;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    background-color: rgb(255,255,255,0.8);
    padding: 5rem 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); /* Equivalent to shadow-lg */
    width: 100%;
    max-width: 32rem;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 1rem;
}
.form-group:last-child {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
}

.required-asterisk {
    color: #ef4444;
}

.form-input {
    font-family: 'Raleway', sans-serif;
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 0.05);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #00eb76;
    box-shadow: 0 0 0 2px #79f5b7;
}

.submit-button {
    font-family: 'Raleway', sans-serif;
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    background-color: #00172f;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 1rem;
}

.submit-button:hover {
    background-color: #00eb76;
}

@media (max-width: 640px) {
    #form{
    min-height: 80vh;
    aspect-ratio: auto;
}

.form-container {
    padding: 2rem 1rem;
    max-width: 20rem;
}
}

/* Global */
html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: #e5e8ea;
    color: #1f2937;
    margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  margin-bottom: 0.5em;
}