#hero {
    width: 100%;
    height: 100vh;
    background: url('/public/media/hero-bg.avif') center/cover no-repeat;
    padding: 80px 4%;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.hero-content {
    max-width: 480px;
}

.hero-badge {
    background-color: var(--azure);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

#hero-form {
    background-color: var(--white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#hero-form .form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

#hero-form .code-search {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

#hero-form .code-search input {
    flex: 1;
}

#hero-form label {
    margin-bottom: 4px;
    font-weight: 700;
}

#hero-form select,
#hero-form input {
    padding: 10px;
    border: 1px solid var(--primary-light);
    border-radius: 8px;
}

#hero-form button {
    padding: 12px;
    background-color: #81BFF7;
    color: #1a365d;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    align-self: flex-start;
}

#hero-form .code-search button {
    align-self: auto;
}
