.navbar {
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

section {
  min-height: calc(100vh - 56px);
}

.login {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login input {
  flex-grow: 1;
}

.oi {
  top: 0;
  line-height: inherit;
}

.icon-prepend {
  width: 50px;
  padding: 0.5rem;
  text-align: center;
  margin-right: 5px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  background-color: var(--secondary);
}

.text-message {
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.23);
}

.text-message:hover {
  background: rgba(0,0,0,0.23) !important;
}

.images {
  display: flex;
  flex-wrap: wrap;
}

.images .image-wrapper {
  max-width: 300px;
  margin: 10px;
  border-radius: 5px;
}

.images .image {
  max-width: 100%;
}

.no-style {
  padding: 0 !important;
}

.contacts {
  padding: 0;
}

.contacts li {
  list-style: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
}

.contacts li h4 {
  padding: 0;
  margin: 0;
}

.account-settings input[type="text"],
.account-settings input[type="password"] {
  min-width: 350px;
}

.account-settings input,
.login input,
.send-message input,
.add-contact-modal input {
  padding: 5px 8px;
}

.account-settings textarea {
  min-width: 400px;
  min-height: 200px;
  outline: none;
  padding: 5px;
}

textarea, input {
  border: 1px solid var(--secondary);
  border-radius: 4px;
}

.add-contact-button {
  color: #ffffff;
}

.add-contact-button:hover {
  color: #6c757d;
}

.alert {
  position: fixed;
  width: 100%;
  bottom: 0;
  margin-bottom: 0;
  text-align: center;
}

.form-select {
  display: block;
  padding: .375rem 1.75rem .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 5px;
}

@media (max-width: 414px) {
  .account-settings input[type="text"],
  .account-settings input[type="password"],
  .account-settings textarea {
    min-width: 0;
    width: calc(100% - 80px);
  }
  
  .account-settings input {
    font-size: 0.9rem;
  }
}