li{
    list-style: none;
    font-size: 12px;
    background-color: rgba(239, 81, 81, 0.84);
    color: white;
    padding: 3px;
    border-radius: 10px;
}
hr{
    width: 200px;
}
section{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.editUser{
    height: 60vh;
}
.loginForm svg {
    height: 30px;
}
.loginCard,
.registerCard, .editForm{
    margin-top: -50px;
    text-align: center;
    padding-bottom: 10px;
}
.loginCard form,
.registerCard form, .editForm form{
    border: 1px solid rgb(49, 49, 49);
    padding: 20px;
}

.formTitle img {
    width: 200px;
    margin-bottom: 20px;
}

.loginCard svg{
    opacity: 60%;
    margin-bottom: -12px;
    color: rgb(49, 49, 49);
}
.loginCard input, .registerCard input, .editForm input,
 .editForm select, input[type='file']{
    margin: 10px;
    padding: 10px 20px;
    color: black;
    border: none;
    border-bottom: 1px solid rgb(49, 49, 49);
}
.loginCard input:focus, 
.loginCard .loginBtn button:focus, 
.registerCard input:focus,
.registerCard .registerBtn button:focus ,
.editForm button:focus,
.editForm input:focus
{
    opacity: 100%;
    outline: none;
    border-bottom: 1px solid black;

}

.loginCard .loginBtn button,
.registerCard .registerBtn button,
.editForm button{
    margin: 30px;
    padding: 10px 20px;
    background-color: rgb(49, 49, 49);
    color: white;
    border: none;
}

.loginCard .loginBtn button:hover,
.registerCard .registerBtn button:hover,
.editForm button:hover
{
    outline: none;
    opacity: 60%;
}
.registerCard .names,
.registerCard .passwords,
.editForm .names,
.editForm .passwords{
    display: inline-flex;
}

.description textarea{
    border: none;
    width: 400px;
    height: 100px;
    resize: none;
    opacity: 60%;
    color: black;
    background-color: rgba(255, 255, 255, 0.053);
}

.description textarea:focus {
    outline: none;
    opacity: 100%;
}
.toRegister p,
.toLogin p{
    opacity: 80%;
    font-size: 14px;
    margin-top: 10px;
}
.toLogin, .toRegister,
.toRegister a,
.toLogin a{
    color: rgb(49, 49, 49);
}
@media screen and (max-width: 1000px) {
    .description textarea {
        width: 300px;
    }
}
.editNews{
    margin-top: 50px;
    height: fit-content;
}
@media screen and (max-width: 1000px) {
    .loginCard input, .registerCard input, .editForm input,
    #form input, #form select, input[type='file']{
    width: 120px;
    }
    .loginCard,
    .registerCard, .editForm, #form{
        padding: 10px;
    }
}