*,
::after,
::before {
	box-sizing: border-box
}

ol[class],
ul[class] {
	padding: 0
}

blockquote,
body,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
h5,
li,
ol[class],
p,
ul[class] {
	margin: 0
}

body {
	min-height: 100vh;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
	font-family: Roboto, sans-serif
}

ol[class],
ul[class] {
	list-style: none
}

a:not([class]) {
	text-decoration-skip-ink: auto
}

img {
	max-width: 100%;
	display: block
}

article>*+* {
	margin-top: 1em
}

button,
input,
select,
textarea {
	font: inherit
}

input {
	border: none;
	background-color: transparent
}

input:focus-visible {
	outline: 0
}

button {
	border: none;
	padding: 0;
	margin: 0;
	background-color: transparent;
	cursor: pointer
}

a {
	color: inherit;
	text-decoration: none
}

section .section {
	display: flex;
	align-items: center;
	padding: 100px 0
}

.container {
	max-width: 1500px;
	padding: 0 30px;
	width: 100%;
	margin: 0 auto
}

.container--small {
	max-width: 1260px;
	padding: 0 30px;
	width: 100%;
	margin: 0 auto
}

input.input:-internal-autofill-selected {
	border-radius: 6px
}

.button {
	padding: 11px 18px;
	font-size: 18px;
	border-radius: 6px;
	transition: .2s;
	cursor: pointer;
    /*background-color: transparent;*/
	text-transform: uppercase;
	border: 2px solid transparent
}

.button--primary {
	background: #2979f6;
	color: #fff;
	border: 2px solid #2979f6
}

.button--primary:hover {
	background: #114bc2;
	border: 2px solid #114bc2
}

.button--secondary {
	background-color: #fff;
	border: 2px solid #fff;
	color: #000
}

.button--secondary:hover {
	background-color: transparent;
	color: #fff
}

.logo__wrapper {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 20px;
	color: #fff;
	font-weight: 700
}

.header__buttons {
	display: flex;
	align-items: center;
	gap: 40px
}

.error-message,
.error-messages {
	color: #f26250
}

.error-messages-1 {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	align-items: start
}

.error-input {
	border: 2px solid #f26250 !important
}

.errorlist li {
	color: #f26250;
	text-align: center
}

.alert.alert-danger {
	color: #f26250;
	text-align: center
}

@media (max-width:1440px) {
	.button {
		font-size: 16px
	}
}

@media (max-width:1024px) {
	section .section {
		padding: 80px 0
	}
}

@media (max-width:767px) {
	.container {
		padding: 0 20px
	}

	.button {
		padding: 9px 12px;
		font-size: 14px
	}

	.header__buttons {
		gap: 20px
	}
}