:root {
  --black: #000;
  --white: #fff;
  --primary: rgba(228, 44, 40, 0.5);
  --primary-light: #f2948c;
}

html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Roboto Condensed", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #e42c28;
}

.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 0.25rem var(--primary);
}

.form-select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 0.25rem var(--primary);
}

.form-check-input:checked {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
}

.form-check-input:focus {
  border-color: var(--primary);
  outline: 0;
  box-shadow: 0 0 0 0.25rem var(--primary);
}

.btn-outline-danger {
  --bs-btn-color: #e42c28;
  --bs-btn-border-color: #e42c28;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #e42c28;
  --bs-btn-hover-border-color: #e42c28;
  --bs-btn-focus-shadow-rgb: 220, 53, 69;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #e42c28;
  --bs-btn-active-border-color: #e42c28;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #e42c28;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #e42c28;
  --bs-gradient: none;
}

.container {
  min-height: 80vh !important;
}

#login {
  width: 50%;
}

#changePwsBox {
  width: 50%;
  height: auto;
}

@media (max-width: 768px) {

  #login,
  #changePwsBox {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  #changePwsBox {
    height: 100%;
  }
}

.bento-item {
  border: 2px solid #dee2e6;
  /* backdrop-filter: blur(50px); */
  border-radius: 1em;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  min-height: 150px;
  min-width: 150px;
  text-align: center;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

.bento-item:hover {
  transform: scale(1.01);
  border: 4px solid #dee2e6;
}

.bento-logo {
  max-width: 80%;
  max-height: 400px;
}

.bento-img {
  width: 100%;
  object-fit: cover;
  border-radius: 1em;
}

.border-table {
  border: 2px solid #dee2e6;
  border-radius: 1em;
}

@media (min-width: 768px) {
  .border-table {
    border: none;
  }
}