.btns {
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
    color: white;
    width: 100px;
    background-color: rgba(0, 0, 0, 0.795);
    font-weight: bold;
}

.read-btn {
    background-color: yellowgreen;
}

.btns:hover {
    background-color: white;
    color: black;
    border-color: black;
}

.btns:active {
    background-color: yellowgreen;
    color: white;
}

.modals {
    background-color: rgba(0, 0, 0, 0.900);
    text-align: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    transition: 150ms ease-in-out;
    z-index: 100;
    overflow-y: scroll;
}

.add-modal,
.add-quote-modal,
.edit-quote-modal,
.edit-quote-names-modal,
.add-quote-header-modal,
.edit-quote-header-modal,
.edit-modal,
.login-modal {
    visibility: hidden;
    transform: scale(0);
}

.add-modal.active,
.add-quote-modal.active,
.edit-quote-modal.active,
.edit-quote-names-modal.active,
.add-quote-header-modal.active,
.edit-quote-header-modal.active,
.edit-modal.active,
.login-modal.active {
    visibility: visible;
    transform: scale(1);
}

.modals .login-form,
.modals .add-form,
.modals .edit-form {
    width: 700px;
    display: block;
    margin: 0 auto;
    margin-top: 8%;
    border: 1px solid white;
    border-radius: 5px;
    padding: 10px;
    background-color: #0077ff;
}

.modals .articles-form {
    width: 80%;
    margin-top: 5px;
}

.articles-form i {
    font-size: 22px;
}

.login-form-description {
    font-size: 22px;
    font-weight: bold;
    color: white;
    padding: 5px 0;
}


/* .modals input {
    height: 40px
}

.modals ::placeholder {
    color: rgba(0, 0, 0, 0.300) !important
} */

.togglePass {
    position: relative;
}

.togglePass i {
    position: absolute;
    right: 15px;
    top: 4px;
    color: rgba(0, 0, 0, 0.795);
    opacity: .5;
    z-index: 10;
    transition: all 0.5s linear;
    cursor: pointer;
}

.togglePass:hover i {
    opacity: 1;
}

.togglePass .fa-eye-slash {
    color: red;
}

.dismiss-modal,
.dismiss {
    color: yellowgreen;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.5s linear;
}

.dismiss-modal .icon,
.dismiss .icon {
    font-size: 24px;
    color: red;
    font-weight: bold;
}

.dismiss-modal .text,
.dismiss .text {
    font-size: 16px;
    color: white;
    transition: all 200ms linear;
}

.dismiss-modal:hover .text,
.dismiss:hover .text {
    color: red;
}


/* adding content forms */

.inputs {
    display: flex;
    width: auto;
}

input,
textarea,
select {
    outline: none;
    width: 100%;
    height: 35px;
    box-sizing: border-box;
    margin-bottom: 20px;
    border: 1.4px solid rgba(0, 0, 0, 0.395);
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
}

input:hover,
input:active {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.200);
}

input:focus {
    border-color: yellowgreen;
}

::placeholder {
    color: rgba(0, 0, 0, 0.230);
    text-indent: 5px;
}


/* .input-fields .inputs {
    display: flex;
    justify-content: center;
} */

.input-fields .fields {
    width: 100%;
    margin: 3px;
}

.input-fields select {
    height: 40px;
}

.form-alerts p {
    width: auto;
    margin: 5px;
    padding: 5px;
    border-radius: 5px;
    font-size: 20px;
}

.form-alerts.red p {
    background-color: white !important;
    color: red;
}

.form-alerts.green p {
    background-color: white !important;
    color: yellowgreen;
}