/***********************************************************************
 *  Forum
 **********************************************************************/
 .forum p {
    color: var(--grey);
    line-height: 20px;
}

.forum--title,
.forum--description {
    font-family: 'Roboto', sans-serif;
    border: 1px solid transparent;
    padding: 10px 12px;
	width: 54%;
    background-color: transparent;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.forum--title {
    margin: 35px 22%;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    resize: none;
}

.forum--description {
    font-size: 14px;
    line-height: 20px;
    height: 120px;
	min-height: 120px;
    margin: 0px 22% 50px;
    resize: vertical;
}

.login--heading {
    text-align: center;
    margin: 120px 0;
}

.login--a {
    text-decoration: none;
    color: var(--blue);
}

/***********************************************************************
 *  Form
 **********************************************************************/
.form--button {
    text-align: center;
    margin: 40px 0 60px;
}

input[type=button] {
    background: var(--blue);
    border: 2px solid var(--blue);
    padding: 12px 45px;
    border-radius: 25px;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    outline: none;
    transition: background .5s, color .5s;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

input[type=button]:hover {
    background-color: transparent;
    color: var(--blue);
}

input.wrong,
textarea.wrong,
input[type=text]:not(:placeholder-shown).wrong {
    border: 1px solid red;
}

#warning {
    display: none;
    color: red;
    font-size: 15px;
    margin-bottom: 15px;
}

#notification {
    display: none;
    color: rgb(145, 228, 22);
    font-size: 15px;
    margin-top: 20px;
}

#warning.active,
#notification.active {
    display: block;
}

#gif {
    display: none;
    width: 70px;
    height: auto;
}

/***********************************************************************
 *  Responzivity
 **********************************************************************/
@media screen and (max-width: 1600px) {
    .forum--title {
        font-size: 24px;
        line-height: 29px;
    }
}

@media screen and (max-width: 1100px) {
    .forum--title {
        margin: 30px 16%;
		width: 68%;
    }

    .forum--description {
        margin: 0px 16% 30px;
		width: 68%;
    }
}

@media screen and (max-width: 700px) {
    .forum--title {
        margin: 15px 0% 30px;
        width: 100%;
    }

    .forum--description {
        margin: 0px 0% 30px;
        width: 100%;
    }
}

@media screen and (max-width: 450px) {
    .forum--title {
        margin: 15px 0% 24px;
    }

    .forum--description {
        margin: 0px 0% 24px;
    }
}