
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* CSS */
.button-24 {
  background: #FF4742;
  border: 1px solid #FF4742;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: nunito,roboto,proxima-nova,"proxima nova",sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 16px;
  min-height: 40px;
  outline: 0;
  padding: 12px 14px;
  text-align: center;
  text-rendering: geometricprecision;
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
}

.button-24:hover,
.button-24:active {
  background-color: initial;
  background-position: 0 0;
  color: #FF4742;
}

.button-24:active {
  opacity: .5;
}
.custom-form {
    max-width: 400px;
   
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #2c2c2c;
}

.custom-form__label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 14px;
}

.custom-form__input,
.custom-form__input.custom-select {
    width: 100%;
    border: none;
    border-bottom: 2px solid #333;
    padding: 10px 0;
    margin-bottom: 20px;
    background: transparent;
    font-size: 16px;
    outline: none;
    border-radius: 0;
    border-image: linear-gradient(to right, #000 95%, transparent 5%) 1;
    border-width: 0 0 2px;
    border-style: solid;
}

.custom-form__input:focus {
    border-color: #000;
}
.custom-form__fields .col-3 {
    width:100%;
}
.custom-form__button-container {
    text-align: left;
}

.custom-form__button.submit-btn {
    color: #fff;
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
    background:#000;
}

.custom-form__button.submit-btn:hover {
    background-color: #333;
}
.glass-blur {
  background: rgb(255 255 255); /* transparent white */
  backdrop-filter: blur(10px);         /* blur effect */
  -webkit-backdrop-filter: blur(32px); /* for Safari */
  border: 1px solid rgba(255 255 255);
  /* border-radius: 16px; */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  /* padding: 20px; */
  color: #fff; /* optional for white-on-dark */
}