/* montserrat-700 - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Montserrat-Bold';
font-style: normal;
font-weight: 700;
src: url('../c4js/montserrat-v26-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-regular - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Poppins-Regular';
font-style: normal;
font-weight: 400;
src: url('../c4js/poppins-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
    --header-height: 5rem;
    --nav-width: 4.8rem;
    --first-color: #4723d9;
    --first-color-light: #afa5d9;
    --second-color: #006fb3;
    --second-color-light: #069fe6;
    --second-color-dark: #004869;
    --white-color: #fff;
    --body-font: "Poppins-Regular", Arial, sans-serif;
    --normal-font-size: 1.3rem;
    --z-fixed: 100;
  }
  
  *,
  *:before,
  *:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  
  html {
    font-size: 64.5%;
  }
  
  body {
    background-color: var(--second-color);
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
  }
  
  a:hover {
    text-decoration: underline;
    color: orange;
  }
  
  .background {
    width: 430px;
    height: 520px;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
  }
  
  .background .shape {
    height: 200px;
    width: 200px;
    position: absolute;
    border-radius: 50%;
  }
  
  .shape:first-child {
    background: linear-gradient(#1845ad, #23a2f6);
    left: -80px;
    top: -180px;
  }
  
  .shape:last-child {
    background: linear-gradient(to right, #ff512f, #f09819);
    right: -80px;
    bottom: -180px;
  }
  
  form {
    height: 635px;
    width: 25em;
    background-color: rgba(255, 255, 255, 0.13);
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 0.625em;
    backdrop-filter: blur(0.625em);
    border: 0.125em solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 2.5em rgba(8, 7, 16, 0.6);
    padding: 3.125em 2.188em;
  }
  
  form *,
  label {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    letter-spacing: 0.031em;
    outline: none;
    border: none;
  }
  
  form h3 {
    font-size: 2em;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
  }
  
  label {
    display: block;
    margin-top: 1.875em;
    font-size: 1em;
    font-weight: 500;
  }
  
  input {
    display: block;
    height: 50px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 0.188em;
    padding: 0 0.625em;
    margin-top: 0.5em;
    font-size: 0.875em;
    font-weight: 300;
  }
  
  ::placeholder {
    color: #e5e5e5;
  }
  
  button {
    width: 100%;
    background-color: #fff;
    color: #080710;
    padding: 0.938em 0;
    font-size: 1.125em;
    font-weight: 600;
    border-radius: 0.313em;
    cursor: pointer;
  } 