@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  font-family: Nunito, sans-serif;
  color: #FFF;
}

body {
  background-color: #000;
  margin: 0;
}


/* Basic Reset and Styling */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

header, footer {
    color: white;
    text-align: center;
    padding: 1em 0;
}

.responsive-row {
    /* Set the background image and properties */
    background-image: url('background-image.jpg');
    background-repeat: repeat-x;
    background-position: center; /* Centers the image initially */
    
    /* Set a minimum height for the row and center content */
    min-height: 90px; /* Adjust as needed */
    display: flex;
    align-items: center; /* Vertically centers the content */
    justify-content: center; /* Horizontally centers the content */
    
    /* Add padding for spacing */
    padding: 20px;
    color: white; /* Example text color for readability over a dark image */
    text-align: center;
}

.content-container {
    /* Add styling to the content container if necessary */
    width: 100%;
    padding: 10px;
}


/* The main container for the columns */
.container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Creates two equal columns (1 fraction each) */
    gap: 20px; /* Adds space between columns */
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto; /* Centers the container on the page */
}

.container p {
    padding: 10px;
}

.column {
    padding: 15px;
}

.form-box {
  background-color: #151617;
  color: white;
  padding-top: 35px;
  padding-right: 33px;
  padding-bottom: 35px;
  padding-left: 33px;
  max-width: 506px;
}

.fs-form {
  display: grid;
  row-gap: 1.5rem;
}

.fs-form:where(.fs-layout__2-column) {
  column-gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}

.fs-field {
  display: flex;
  flex-direction: column;
  row-gap: 0.375rem;
  padding-bottom: 15px;
}

.fs-label {
  color: var(--color-text-default);
  display: block;
  font-family: var(--font-family-display);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.fs-description {
  color: #000;
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.fs-form:where(.fs-layout__2-column) .fs-button-group {
  grid-column: 1 / -1;
}

.fs-button-group {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 1.5rem;
}

.fs-form:where(.fs-layout__2-column) .fs-button-group {
  grid-column: 1 / -1;
}

.fs-button {
  background-color: var(--color-primary);
  border-radius: 0.375rem;
  color: white;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1rem;
  padding: 1rem 2rem;
  transition-duration: 200ms;
  transition-property: background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.fs-button:hover {
  background-color: var(--color-primary-active);
}

.fs-button:focus-visible {
  background-color: var(--color-primary-active);
  outline: 3px solid var(--color-highlight);
}

.fs-input,
.fs-select {
  appearance: none;
  border-radius: 0.375rem;
  border-width: 0;
  box-shadow: var(--color-border-default) 0 0 0 1px inset;
  color: #000;
  font-size: 1rem;
  height: 2.5rem;
  line-height: 1.5rem;
  outline: none;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.fs-input:focus-visible,
.fs-select:focus-visible {
  box-shadow: var(--color-border-active) 0 0 0 1.5px inset;
  outline: 3px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-input::placeholder {
  color: #000;
}


.fs-textarea {
  appearance: none;
  border-radius: 0.375rem;
  border-width: 0;
  box-shadow: var(--color-border-default) 0 0 0 1px inset;
  color: #000;
  font-size: 1rem;
  line-height: 1.5rem;
  outline: none;
  padding: 0.5rem 0.75rem;
  resize: vertical;
}

.fs-textarea:focus-visible {
  box-shadow: var(--color-border-active) 0 0 0 1.5px inset;
  outline: 3px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-textarea::placeholder {
  color: var(--color-text-muted);
}



/* Responsive layout: stacks columns vertically on smaller screens */
@media (max-width: 600px) {
    .container {
        grid-template-columns: 1fr; /* Changes to a single column on small screens */
    }
}