@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
body {
    background: #282828;
    font-family: 'Comfortaa', cursive;
    color: #FFFFFF;
}
.top_header {
    width: 100vw;
    height: 72px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
}
.close {
    width: 24px;
    height: 24px;
    background: url("/src/img/window-close.svg");
    margin-left: 16px;
}
.title {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-left: 12px;
}
form {
    width: 100vw;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    align-items: end;
}
input {
    width: 100%;
    height: 36px;
    background: #ffffff;
    border: none;
    border-radius: 6px;
    color: #282828;
    padding: 10px 12px;
    font-weight: 500;
    font-family: 'Comfortaa', cursive;
    font-size: 14px;
    margin-bottom: 12px;
}
input::placeholder {
    color: #282828;
    font-weight: 500;
    font-family: 'Comfortaa', cursive;
    font-size: 14px;
}
button {
    width: fit-content;
    font-weight: 500;
    font-family: 'Comfortaa', cursive;
    color: #CFFF46;
    background: none;
    border: none;
    font-size: 14px;
    margin-right: 16px;
    margin-top: 2px;
}
.error {
    width: 100%;
    color: #E45D32;
    font-size: 12px;
}
.wrap {
    width: 100vw;
    display: flex;
    justify-content: center;
    margin-top: 74px;
    font-size: 14px;
    font-weight: 500;
    color: #75777A;
}.wrap a {
     color: #CFFF46;
 }

.error_wrap {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100vw;
    padding: 0 16px;
    display: flex;
    justify-content: center;
    /* transform: translateY(90px);
    transition-property: transform;
    transition-duration: 1.0s;
    transition-timing-function: cubic-bezier(0.240, 0.715, 0.000, 1.005); */
    animation: 1s cubic-bezier(0.240, 0.715, 0.000, 1.005) error_anim;
}
@keyframes error_anim {
    from {
        top: -42px;
    }
    to {
        top: 65px;
    }
}
.error_notification {
    background: #E45D32;
    width: 100%;
    height: 42px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 9px 0 12px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.error_text {
    font-size: 14px;
    font-weight: 500;
    margin-top: 1px;
}
.error_close {
    background: url("/src/img/window-close.svg");
    width: 24px;
    height: 24px;
}