a:active,
a:focus {
  outline: none;
  text-decoration: none;
}
main{
  flex-direction:column;
  width:100%;
  display:flex;
  flex:1;
}
button {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition-duration: .3s;
}
button:active,
button:focus {
  outline: none;
}
button::-moz-focus-inner {
  border: 0;
}
input,
textarea {
  outline: none;
}
input:active,
textarea:active {
  outline: none;
}
:focus {
  outline: none;
}
textarea {
  resize: none;
}
textarea {
  resize: vertical;
}
textarea {
  resize: horizontal;
}
input {
  margin: 0;
  border-radius: 0;
}
* {
  box-sizing: border-box;
}
svg path {
  transition-duration: .3s;
}
a {
  transition-duration: .3s;
  color: initial;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
.image_wrapper img {
  max-width: 100%;
  max-height: 100%;
}
nav {
  list-style: none;
}


body {
  position: relative;
  font-family: "Rubik", serif;
  color: #000;
  font-size: 20px;
  background-color: #fff;
}
.wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: url(../img/back.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.wrapper:after{
  content: "";
  position:absolute;
  top: 0px;
  left:0px;
  background:rgba(0,0,0,0.45);
  width:100%;
  z-index:1;
  height:100%;
}
.container {
  width: 100%;
  max-width: 1600px;
  padding: 0 16px;
  margin: 0 auto;
  position:relative;
  z-index:2;
}
.domain_block{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100vh;
  gap:50px;
}
.domain_text{   
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc(100% / 2 - 50px);
  padding: 40px 20px;
}
.domain_form{
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc(100% / 2 - 50px);
}
.domain{
  font-size: 52px;
  color: #fff;
  font-weight: 600;
  width: max-content;
}
.success_text{
  display:none;
  font-size: 24px;
  color: #fff;
  border-radius: 60px;
  font-weight: 600;
  gap: 20px;
  width: 100%;
  align-items: center;
  padding: 25px 30px;
  text-align: center;
  line-height: 120%;
}
.form_holder{
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  margin-top:15px;
}
.form_input{
  display: flex;
  flex-direction: column;
  width: 100%;
}
.form_input input[type="text"]{
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #fff;
  outline: none;
  padding: 5px 10px;
  height: 44px;
  color: #000;
  font-weight: 400;
  font-size: 18px;
}
.form_input textarea{
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #fff;
  outline: none;
  padding: 5px 10px;
  height: auto;
  color: #000;
  font-weight: 600;
  font-size: 18px;
}

.form_input textarea::placeholder,
.form_input input[type="text"]::placeholder{
 font-size:18px;
 font-weight:300;
 color:#000;
}
.form_input textarea.error_input,
.form_input input.error_input{
  background: rgb(202 65 65 / 20%);
  border: 1px solid #ca4141;
}
.form_input input[type="Submit"]{
  color: #fff;
  background: #000;
  border: none;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 19px;
  font-weight: 500;
  cursor:pointer;
}
.form_input input[type="Submit"]:hover{
  background:#fff;
  color: #000;
}
.form_pretext{
  font-size: 20px;
  line-height: 120%;
  color: #fff;
  font-weight: 300;
  margin-bottom: 10px;
}
.success_text.active{
  display: flex;
  flex-direction: column;
}
.domain_sale_text{
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 34px;
  color: #fff;
  width: max-content;
  border-radius: 25px;
  font-weight: 400;
}
@media screen and (max-width: 992px) {
  .domain_text{
    width:100%;
    gap: 10px;
    padding: 20px 20px;
  }
  .domain_form{
    width:100%;
  }
  .domain_block {
    display: flex;
    width:100%;
    flex-direction: column;
    justify-content: flex-start;
  }
  .domain_block{
    gap:20px;
  }
  .domain{
    font-size:28px;
  }
  .domain_sale_text{
    font-size:20px;
  }
  .form_pretext{
    font-size:14px;
  }
  .form_input input[type="text"]{
    font-size:14px;
  }
  .form_input input[type="text"]::placeholder{
    font-size:14px;
  }
}

@media screen and (max-width: 767px) {
 
}