/* inter-regular - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: local(''),
  url('../fonts/inter-v7-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  url('../fonts/inter-v7-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* inter-500 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: local(''),
  url('../fonts/inter-v7-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  url('../fonts/inter-v7-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* inter-600 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: local(''),
  url('../fonts/inter-v7-latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  url('../fonts/inter-v7-latin-600.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* inter-700 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: local(''),
  url('../fonts/inter-v7-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  url('../fonts/inter-v7-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* GLOBAL */
html {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
  color: #222;
}

img {
  max-width: 100%;
  height: auto;
}


/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}


/* MAIN-CONTENT */
.main-content {
  flex-grow: 1;
}

.main-wrapper {
  padding: 80px 0;
  display: flex;
  background-color: #F1F4FF;
  max-width: 1440px ;
  width: 100%;
  margin: 0 auto;
  justify-content: center;

}
.intro-text {
  width: 570px;
  height: 640px;
  border-radius: 20px;
  background-image: url(../img/intro-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color:#fff;

  margin-right: 12px;

}
.intro-wrapper{
  display: flex;
  flex-direction: column;
  padding: 60px;
  height: 100%;

}
.fnb {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  border: 1px solid #fff;
  display: block;
  padding: 5px 15px;
  width: fit-content;
  border-radius: 41px;
  opacity: 0.8;
  cursor: pointer;
  margin-bottom: 65px;
}
.fnb:hover{
  opacity: 1;
}

.title {
  font-weight: bold;
  font-size: 36px;
  line-height: 46px;

}
.text {
  flex-grow: 1;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
}
.btn {
  text-align: center;
  background-color: #4DC490;
  /* padding: 29px; */
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-top: -78px;

}
.a-btn{
  font-weight: bold;
  font-size: 19px;
  line-height: 23px;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  padding: 29px;
}

.sing-up-form {
  width: 570px;
  height: 640px;
  background-color:#fff;
  padding: 55px 60px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
.subtitle {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 42px;
  color: #000;
  flex-grow: 1;
}

.input{
  margin-bottom: 20px;
  padding: 11px 0 ;
  width: 100%;
  border: none;
  border-bottom: 1px solid #555;
  outline:none;

}
.input:focus{
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #000000;

}

.btn-s {
  width: 100%;
  padding: 20px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  background-color: #655AF2;
  border-radius: 10px;
  border: none;
  outline: none;
  cursor: pointer;

}
.terms {
  font-weight: normal;
  font-size: 11px;
  line-height: 15px;
  color: #555555;
 text-align: center;
}
.highlight {
  color: rgb(235, 78, 22);
  font-weight: 600;
}