@font-face {
  font-family: 'firasans_regular';
  font-style: normal;
  src: url('/font/firasans-regular.ttf') format('truetype')
}
@font-face {
  font-family: 'firasans_bold';
  font-style: normal;
  src: url('/font/firasans-bold.ttf') format('truetype')
}


:root {
	--global--font-primary: 'firasans_regular',Arial,sans-serif;
	--global--font-bold: 'firasans_bold',Arial,sans-serif;
}

@media screen and (min-width:320px) {

html {
	font-size: 16px;
}

body {
	margin:0;
	padding:0;
	min-width:320px;
	font-family: var(--global--font-primary);
	background: linear-gradient(45deg, #0a1467, #10109b, #2592ef);
	color: white;
}

.common__form {
	padding: 20px;
	min-height: 100vh;
}

.header__block {
	text-align:center;
	margin: 2rem;
}

.logo {
	max-width:70px;
}

.pagetitle {
	font-size:35px;
	font-family: var(--global--font-bold);
	margin: 0 0 1rem;
}

.form__blocks {
	display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.text_input {
	display: block;
	width: 100%;
}

.text_input label {
	margin: 0 0 .5rem;
    display: block;
	cursor: pointer;
	width: 100%;
}

.text_input input {
	width: -moz-available;
	width: -webkit-fill-available;
	width: fill-available;
	padding: 10px;
    font-size: 15px;
    font-family: var(--global--font-primary);
	border: 0;
    border-radius: 5px;
}

.text_input.checkbox_input {
    display: flex;
    gap: 1rem;
    flex-direction: row;
    align-items: flex-start;
	font-size: 13px;
	cursor: pointer;
}
.text_input.checkbox_input input {
	width: 25px;
    height: 25px;
    accent-color: #bf00be;
}
.text_input.checkbox_input a {
	color: white;
}

.consent__block {
	margin: 1rem 0;
}

.send__button {
	width: 100%;
    text-align: center;
}
.send__button button {
   	border: none;
    font-size: 25px;
    border-radius: 5px;
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
	font-family: var(--global--font-primary);
	background: linear-gradient(31deg, #c500b6, #8500ff);
	cursor: pointer;
	transition: .1s;
	color: #fff;
}
.send__button button:hover,
.send__button button:active,
.send__button button:focus {
	background: linear-gradient(31deg, #680461, #5b00af);
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  display: flex;
}
.pop-up{
    width: 100%;
    max-width: 400px;
    padding: 1rem;
    background-color: #fff;
	position: relative;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	animation: fadeIn 0.3s;
	border-radius: .5rem;
}
.pop-up-button{
	border: none;
        font-size: 1rem;
        border-radius: 5px;
        padding: 1rem 2rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: var(--global--font-primary);
        background: linear-gradient(31deg, #c500b6, #8500ff);
        cursor: pointer;
        transition: .1s;
        color: #fff;
		        text-align: center;
}
.pop-up-button:hover{background: linear-gradient(31deg, #680461, #5b00af);}
.otvet_reg{
	text-align: center;
	pading:1rem;
	color:#000;
	font-size: 1.2rem;
	}
#message{
	margin-bottom: 1rem;
}

.no-dis{display:none;}
}


@media screen and (min-width:576px) {

.common__form {
	max-width: 60%;
	margin: 0 auto;
}

}


@media screen and (min-width:992px) {

.common__form {
	max-width: 400px;
}

}

@media screen and (min-width:1200px) {

.common__form {
	max-width: 800px;
}

}