* {
  box-sizing: border-box;
}
:root {
  --onsurface-light-high-emphasis: rgba(255,255,255,1);
  --onsurface-light-disabled: rgba(255, 255, 255, 0.32);
  --Blended-Gradient: linear-gradient(135deg, #797DDC 7.07%, #A159F2 7.07%, #4FE3FD 92.16%, #4789D8 92.16%)
}

@font-face {
  font-family: 'Galano Grotesque';
  src: url('font/GalanoGrotesqueRegular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Integral CF";
  src: url('font/IntegralCF-DemiBold.ttf');
}
@font-face {
  font-family: "Galano Grotesque";
  src: url('https://www.bu.edu/cdn/fonts/Galano-Grotesque/GalanoGrotesqueBold.woff2') format('woff2'),
       url('https://www.bu.edu/cdn/fonts/Galano-Grotesque/GalanoGrotesqueBold.woff') format('woff');
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Galano Grotesque";
  src: url('https://www.bu.edu/cdn/fonts/Galano-Grotesque/GalanoGrotesqueBoldItalic.woff2') format('woff2'),
       url('https://www.bu.edu/cdn/fonts/Galano-Grotesque/GalanoGrotesqueBoldItalic.woff') format('woff');
  font-style: italic;
  font-weight: 700;
}


body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  font-size: 14px;
}
#root {
  width: 100%;
  height: 100vh;
  background: url("../images/v1_123.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.container {
  width: 100%;
  padding: 138px 0;
}
.d-flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.justify-content-between {
  justify-content: space-between;
}
.align-items-center {
  align-items: center;
}
.align-items-end {
  align-items: flex-end;
}
.flex-gap-22 {
  gap: 22px;
}
.flex-gap-25 {
  gap: 25px;
}
p {
  margin: 0;
  padding: 0;
}
::placeholder {
  color: #FFFFFF52;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #FFFFFF52;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #FFFFFF52;
}

.main-box {
  width: 464px;
  height: 396px;
  margin: 0 auto;
  /* background-color: #740c0c; */
  /* box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); */
}

.main-box .content {
  padding: 0 32px;
  color: rgba(255,255,255,1);
}

.main-box .content h2 {
  color: var(--onsurface-light-high-emphasis, #FFF);
  font-style: normal;
  font-weight: 400;
  font-family: "Integral CF";
  font-size: 32px;
  line-height: 141%; /* 45.12px */
  letter-spacing: 2.88px;
  opacity: 1;
  text-align: center;
  margin: 0;
}
.main-box .content p {
  color: var(--onsurface-light-high-emphasis, #FFF);
  font-family: 'Galano Grotesque';
  font-weight: SemiBold;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.845px;
  line-height: 141%; /* 18.33px */
  opacity: 1;
  text-align: center;
}
.form-input {
  width: 100%;
  padding: 0 1%;
}
.form-input input {
  width: 100%;
}
.btn-shadow-box {
  display: flex;
  justify-content: center;
  height: 76px;
}
.box-shadow {
  width: 214px;
  height: 58px;
  flex-shrink: 0;
  opacity: 0.54;
  background: var(--Blended-Gradient, linear-gradient(135deg, #797DDC 7.07%, #A159F2 7.07%, #4FE3FD 92.16%, #4789D8 92.16%));
  filter: blur(8px);
}
[type="email"] {
  display: flex;
  width: 383px;
  height: 42px;
  padding: 11px 22px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 4px;
  background: var(--onsurface-light-disabled, rgba(255, 255, 255, 0.32));
  color: #FFFFFFB2;
  border: none;
}
[type="submit"] {
  display: flex;
  width: 196px;
  height: 45px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 4px;
  background: var(--onsurface-dark-high-emphasis, #181819);
  color: var(--onsurface-light-high-emphasis, #FFF);
  text-align: center;
  font-family: 'Galano Grotesque';
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 155.5%; /* 27.99px */
  letter-spacing: 0.72px;
  border: none;
  position: relative;
  z-index: 1;
}
.shadow {
    position: relative;
    width: 196px;
    height: 45px;
    z-index: 0;
}
.shadow:before {
  content:"";
  position: absolute;
  inset: -5px;
  /* transform: translate(10px,8px); */
  z-index: -1;
  background: var(--Blended-Gradient, linear-gradient(135deg, #797DDC 7.07%, #A159F2 7.07%, #4FE3FD 92.16%, #4789D8 92.16%));
  /* background: conic-gradient(from 90deg at 40% -25%, #ffd700, #f79d03, #ee6907, #e6390a, #de0d0d, #d61039, #cf1261, #c71585, #cf1261, #d61039, #de0d0d, #ee6907, #f79d03, #ffd700, #ffd700, #ffd700); */
  filter: blur(10px);
}

footer {
  width: 100%;
  padding: 0 67px;
  /* display: inline-flex;
  align-items: flex-start;
  gap: 940px; */
  color: #FFFFFF;
  background-color: #00000000;
  position: absolute;
  bottom: 47px;
  color: #FFF;
  font-family: 'Galano Grotesque';
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
footer .content {
  /* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); */
}

@media (max-width: 600px) {
  .main-box {
    width: 338px;
    height: 351px;
  }
  .logo-title svg:first-child {
    width: 48px;
    height: 48px;
  }
  .logo-title svg:last-child {
    width: 271px;
    height: 24px;
  }
  .main-box .content {
    padding: unset;
  }
  .main-box .content h2 {
    font-size: 22px;
    line-height: 154%; /* 33.88px */
    letter-spacing: 1.65px;
  }
  .flex-gap-22 {
    gap: 21px;
  }
  .main-box .content p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.07px;
  }
  .form-input {
    width: 100%;
    padding: 0 0.8%;
  }
  [type="email"] {
    width: 333px;
    height: 38px;
    padding: 13px 37px 13px 24px;
    justify-content: center;
    align-items: flex-start;
  }
  .flex-gap-25 {
    gap: 31px;
  }
  .btn-shadow-box {
    height: 60px;
  }
  footer {
    font-size: 10px;
    font-weight: 400;
    line-height: 1.5;
    padding: 0 31px;
    bottom: 26px;
  }
}