@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&display=swap');

* {
	margin: 0;
	padding: 0;
	list-style-type: none;
	box-sizing: border-box;
	font-family: "Golos Text", sans-serif;
}
input,
textarea {
	outline: none;
	resize: none;
}
input[type="number"] {
	-moz-appearance: textfield;
	-webkit-appearance: textfield;
	appearance: textfield;
}
 
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	display: none;
}
body {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 0rem;
    position: relative;
    background: #1b1b1b;
    overflow: hidden;
}
a {
	text-decoration: none;
	color: #fff;
	transition: 0.3s all
}
button {
	transition: 0.3s all;
	background: transparent;
	border: none;
	cursor: pointer
}
.container {
    width: 470px;
    margin: 0 auto;
    padding-top: 4%;
}
section {
    background: #ffffff0d;
    padding: 1rem 2rem;
    border-radius: 1rem;
    box-shadow: 0px 5px 23px 0px rgb(6 6 6 / 57%);
}
form>h1 {
    text-align: center;
    font-size: 1.4rem;
    color: #bab1a8;
    padding-bottom: .5rem;
    margin-bottom: .5rem;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
}
form>p {
    font-size: .9rem;
    color: #bab1a8;
    padding-bottom: 1.2rem;
    text-align: center;
}
.form-group {
    padding-bottom: 1rem;
}
.form-group>label {
    display: block;
    color: #bab1a8;
    padding-bottom: .2rem;
}
.form-group>.block {
    position: relative;
}
.form-group>.block>input {
    width: 100%;
    height: 50px;
    background: rgba(0,0,0,.5);
    border: 1px solid #e4dad129;
    border-radius: .5rem;
    padding: 0 1.23rem;
    font-size: 1rem;
    color: #e4dad1;
    font-weight: 500;
}
.form-group>.block>input::placeholder {
	color: #e4dad136;
}

.form-group>.block>input:focus, .form-group>.block>input:hover {
    border: 1px solid #6b7f49;
    transition: .3s;
}
.form-group>.block>.hidden {
    color: #a8ce67;
    position: absolute;
    right: .8rem;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: .3s;
}
.form-group>.block>.hidden:hover {
    color: #8eaf56;
}
.form-group>.block>.hidden>svg {
    width: 1.5rem;
    height: 1.5rem;
}
form>.fool {
    display: flex;
    justify-content: space-between;
}
.captcha {
	padding-bottom: 1rem;
}
form>.fool>.form-checkbox {
	display: block;
	position: relative
}
form>.fool>.form-checkbox input[type=checkbox] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    display: block;
    width: 2px;
    height: 2px;
    left: 11px;
    top: 26px;
}
form>.fool>.form-checkbox span {
	display: inline-block;
	padding: 0 0 0 33px;
	line-height: 1.4rem;
	transition: .3s;
	cursor: pointer;
	font-weight: 300;
	color: var(--color-alt);
	font-size: .9rem;
}
form>.fool>.form-checkbox span:before {
	content: "";
	display: inline-block;
	position: absolute;
	width: 1.4rem;
	top: -1px;
	height: 1.4rem;
	left: 0;
	border-radius: 0.4rem;
	border: 1px solid var(--input-border);
	background-color: var(--input);
}
form>.fool>.form-checkbox span:after {
	content: "";
}
form>.fool>.form-checkbox input[type=checkbox]:checked+span::after {
	position: absolute;
	left: 9px;
	top: 4px;
	width: 4px;
	height: 10px;
	border: solid var(--btn-green);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
form>.form-end {
	padding: 1rem 0rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}
form>.form-end.mini>a {
	width: auto;
}
form>.form-end>button {
	font-size: 1.1rem;
	background: #a8ce674d;
	width: 100%;
	height: 3rem;
	color: #a8ce67;
	border-radius: .5rem;
}
form>.form-end>button:before {
	font-size: 1.1rem;
	background: var(--btn-green);
	width: 100%;
	height: 3rem;
	color: #fff;
	border-radius: .5rem;
}
form>.form-end>button:hover {
	background: #a8ce6787;
}
form>.form-end>a {
	height: 3rem;
	padding: .7rem 1rem;
	display: flex;
	align-items: center;
	border: 1px solid #14B498;
	border-radius: .5rem;
	background: transparent;
	color: #14B498;
	font-size: 1.1rem;
}
form>.form-end>a:hover {
	background: #14b49814;
	color: #14B498;
}
.footer {
    display: flex;
    justify-content: center;
    gap: .5rem;
    padding-top: 1rem;
}
.footer>p {
    color: var(--color-alt);
    font-weight: 500;
    font-size: .9rem;
}

footer {
    padding: .8rem;
    color: #bab1a8;
    font-size: .9rem;
    text-align: center;
}
#notifications {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.notification {
    width: max-content;
    max-width: 320px;
    padding: 14px 18px;
    border-radius: .4rem;
    background: var(--background);
    box-shadow: 0 5px 25px rgba(0, 0, 0, .15);
    animation: notification-in .3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification.success {border: 2px solid rgb(168 206 103 / 46%);border-left: 4px solid rgb(168 206 103 / 46%);background: rgb(168 206 103 / 46%);color: #fff;box-shadow: 18px 0 19px -16px rgb(168 206 103 / 46%) inset;}
.notification.success>svg {
    min-width: 2.5rem;
    width: 2.5rem;
    min-height: 2.5rem;
    height: 2.5rem;
    color: var(--green-color);
    border: 3px solid var(--green-color);
    border-radius: 50%;
    padding: .3rem;
}
.notification.error {
	border: 2px solid rgb(200 62 49 / 46%);
	border-left: 4px solid rgb(200 62 49 / 46%);
	background: rgb(200 62 49 / 46%);
	color: #fff;
	box-shadow: 18px 0 19px -16px rgb(200 62 49 / 46%) inset;
}
.notification.error>svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--red);
    border: 3px solid var(--red);
    border-radius: 50%;
    padding: .3rem;
}
.notification.process {
    border-left: 4px solid #3b82f6;
}

.notification.hide {
    animation: notification-out .3s ease forwards;
}

@keyframes notification-in {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes notification-out {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(50px);
    }
}

.preload {
	margin: 0 auto;
    height: 2rem;
}
.preload>svg {
	height: 100%;
}