#cookie_note{
    display: none;
    position: fixed;
    bottom: 15px;
    left: 35%;
    max-width: 80%;
    width: 100%;
    transform: translateX(-30%);
    padding: 20px;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    gap: 40px;
    background: #5f02eb;
    z-index: 1000;
}

.flex-form{
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

#agreement-data{
    width: 40px;
    margin: 20px 0;
}

#cookie_note p{
    margin: 0;
    font-size: 18px;
    line-height: 24px;
    text-align: left;
    color: #fff;
}

.cookie_accept{
    width: 35%;
    height: min-content;
	background: #fff;
    color: #5f02eb;
}

.showing-cook{
    justify-content: center;
    align-items: center;
}

#sign-up form fieldset:nth-last-of-type(1){
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
}

@media (min-width: 991px){
    #cookie_note.showing-cook{
        display: flex;
    }
}

@media (max-width: 991px){
    #cookie_note.showing-cook{
        display: flex;
        text-align: left;
        flex-direction: column;
    }
    #cookie_note p{
        font-size: 17px;
        line-height: 21px;
    }
    .cookie_accept{
        width: inherit;
    }
}