/* HTML elements */
body {
    font-family: 'Outfit', sans-serif;
    background-color: #f4f4f4;
    text-align: center;
}

h1, h2, h3 {
    font-family: 'Arvo', sans-serif;
}

h2, h3 {
    padding: 1rem;
}

hr {
    color: #949896;
}

textarea {
    resize: none;
  }

/* General classes */
.btn-main {
    background-color: #4ec2e3;
}

.btn-main:hover {
    background-color: #55c9d6;
}

.centered-box {
    min-height: 100vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.centered-form {
    padding: 8% 12%;
    border: 1.2px solid #e0e0e0;
    border-radius: 0.8rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.centered-form form {
    display: flex;
    flex-direction: column;
}

.centered-form form input {
    margin: 5% 0;
    padding: 0.65rem 1.25rem;
    border: 0.15rem solid transparent;
    border-radius: 2rem;
    background-color: #f1f5f9;
    -webkit-transition: 0.5s;
    transition: 0.25s;
    outline: none;
}

.centered-form form input:focus {
    border: 0.15rem solid #51c5dd;
}

.above-limit,
.error {
    color: #ff8040;
    margin-bottom: 1rem;
}

.wrapper.blur {
  filter: blur(3px);
}

/* Login page */
.app-name {
    font-size: 1.5rem;
    font-weight: 600;
}

#remember-me {
    text-align: left;
    font-size: 0.9rem;
}

.form-addition {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Main view */
.app-name-nav {
    padding: 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.app-name-link {
    text-decoration: none;
}

.main-row {
    height: 100vh;
}

.nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-item {
    margin: 0.6rem 1.4rem;
    padding: 0.35rem 0.2rem 0.35rem 0.6rem;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
}

.sidebar {
    background-color: #0d1510;
}

i {
    color: #949896;
    font-size: 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
}

.nav-item a {
    padding-left: 1.5rem;
    color: #949896;
    font-size: 1.25rem;
}

.nav-item a:hover {
    color: #fff;
}

.active-item {
    background-color: #3e554c;
}

.active-item i,
.active-item a {
    color: #fff;
}

/* Expenses */
.expense-row {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
}

.expense-col {
    margin: auto;
    height: 95%;  
}

.first-col {
    width: 55%;
    display: flex;
    border: 1px #D4D4D4 solid;
    border-radius: 20px 60px 40px 80px;
}

.expense-form {
    width: 90%;
    padding: 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: #3e554c;
    box-shadow: 0 0 0 0.1rem #3e554c;
}

.input-group {
    padding: 0.8rem;
}

.input-group span,
.input-group input,
.input-group select,
.input-group textarea {
    font-size: 1.1rem;
}

.second-col {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.limit-box {
    height: 30%;
    padding: 1rem;
    border: 1px #D4D4D4 solid;
    border-radius: 20px 60px 40px 80px;
}

.limit-message {
    font-size: 1.25rem;
}

/* Settings */
.settings-main-col {
    padding: 1.5rem;
}

.settings-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1.5rem;
}

.settings-list-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.settings-button {
    display: flex;
    justify-content: left;
}

.settings-button button {
    width: 12rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.settings-icon {
    font-weight: 100 !important;
    cursor: pointer;
}

.fa-pen-to-square:hover {
    color: #0dcaf0;
}

.fa-trash:hover {
    color: #ff8040;
}

.list-item {
    margin-left: 0.3rem;
    margin-right: 0.3rem;
}

.btn.list-item {
    width: 7.5rem;
}

.modal-btn {
    display: block;
    margin-left: 1.75rem;
}

.settings-checkbox {
    display: inline-block;
}

#first-form-element {
    display: flex;
}
