@font-face {
    font-family: 'Kepler Std Light'; /* The name you want to use for the font */
    src: url('https://24101925.fs1.hubspotusercontent-na1.net/hubfs/24101925/Custom%20Fonts/KeplerStdLight.woff') format('woff'); /* URL and format */
}

@font-face {
    font-family: 'Futura Cyrillic Book'; 
    src: url('https://24101925.fs1.hubspotusercontent-na1.net/hubfs/24101925/Custom%20Fonts/FuturaCyrillicBook.woff') format('woff'); /* Font URL and format */
    font-weight: normal; /* Define font weight */
    font-style: normal; /* Define font style */
}

.signup-container {
  background-color: #f9f7f3;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  transform: translateY(-100px); 
}

.signup-container-header {
  text-align: center;
  font-family: 'Futura Cyrillic Book', Arial, sans-serif;
  color: #ab9058;
  font-weight: normal;
  text-transform: uppercase;
  padding-bottom: 0;
  
}

.signup-container-bottom {
  text-align: center;
  font-family: 'Futura Cyrillic Book', Arial, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  background-color: #F3F0E8;
}

.signup-container-bottom img {
  width: 50px;
  margin-bottom: 25px;
  text-align: center;
}

.signup-container-header:first-child {
padding-top: 35px;
}

.signup-container p {
  text-align: center;
  font-weight: normal;
  font-family: 'Kepler Std Light', 'Times New Roman', Times, serif;
  font-size: 20px;
  padding-bottom: 0;
}

/* Center align the form content */
#form-container-104e9a4b-cdcf-4089-b7ae-8e87594cc4be  {
    text-align: center !important;
    margin: 0 auto !important;
    padding: 20px !important;
}

#form-container-104e9a4b-cdcf-4089-b7ae-8e87594cc4be .hs-form-private {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: #F9F7F3; 
  
}


/* Form heading */
#form-container-104e9a4b-cdcf-4089-b7ae-8e87594cc4be h1 {
    font-size: 24px !important;
    font-family: 'Arial', sans-serif !important;
    font-weight: bold !important;
    color: #a58a63 !important; /* Gold color */
    margin-bottom: 10px !important;
}

/* Subheading text */
#form-container-104e9a4b-cdcf-4089-b7ae-8e87594cc4be p {
    font-size: 16px !important;
    font-family: 'Arial', sans-serif !important;
    color: #555 !important;
    margin-bottom: 20px !important;
}

#form-container-104e9a4b-cdcf-4089-b7ae-8e87594cc4be .form-columns-2 {
  display: flex;
  gap; 5px !important;
 
}

/* Form inputs (First Name, Email Address) */
#form-container-104e9a4b-cdcf-4089-b7ae-8e87594cc4be .hs-form-field input {
    display: inline-block !important;
    width: 100% !important; /* Adjust input width */
    margin-right: 1% !important;
    padding: 10px !important;
    font-size: 16px !important;
    border: 2px solid #c8a165 !important; /* Gold border */
    border-radius: 4px !important;
    background-color: #fff !important;
    outline: none !important;
    font-family: 'Arial', sans-serif !important;
    color: #000000 !important;
}

/* Remove margin for the last input */
#form-container-104e9a4b-cdcf-4089-b7ae-8e87594cc4be .hs-form-field input:last-child {
    margin-right: 0 !important;
}

/* Placeholder text */
#form-container-104e9a4b-cdcf-4089-b7ae-8e87594cc4be .hs-form-field input::placeholder {
    color: #c8a165 !important; /* Gold color */
    font-style: italic !important;
}

/* Submit button styles */
#form-container-104e9a4b-cdcf-4089-b7ae-8e87594cc4be .hs_submit input[type="submit"] {
    display: inline-block !important;
    background-color: #86c5da !important; /* Light blue button */
    color: #fff !important;
    font-size: 16px !important;
    font-family: 'Arial', sans-serif !important;
    font-weight: normal;
    padding: 15px 40px !important;
    border: none !important;
    border-radius: 50px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
    margin-left: 1% !important; /* Spacing between inputs and button */
    white-space: nowrap; /* Prevents wrapping */
    text-align: center;  /* Centers the text */
    display: inline-block; /* Ensures proper button alignment */
  
}

/* Submit button hover effect */
#form-container-104e9a4b-cdcf-4089-b7ae-8e87594cc4be .hs_submit input[type="submit"]:hover {
    background-color: #5b9dad !important; /* Darker blue on hover */
}

@media (max-width: 700px) {
    /* Flexbox switches to column layout */
    #form-container-104e9a4b-cdcf-4089-b7ae-8e87594cc4be .hs-form-private {
        flex-direction: column; /* Stack items vertically */
        align-items: stretch;  /* Ensure inputs take full width */
        gap: 20px; /* Add spacing between items */
    }

    /* Inputs take full width */
    #form-container-104e9a4b-cdcf-4089-b7ae-8e87594cc4be .hs-form-field input {
        width: 100% !important;
    }

    /* Submit button full width */
    #form-container-104e9a4b-cdcf-4089-b7ae-8e87594cc4be .hs_submit input[type="submit"] {
        width: 100% !important;
        margin-left: 0 !important; /* Reset left margin for alignment */
    }
}

