@import url('./dist/css/style.css');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300&display=swap');

body {
  background: #f3f7f7;
  font-family: 'Nunito', sans-serif;
}

.btm-nav-bar {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  margin: 0;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  filter: drop-shadow(2px 2px 4px #E5E5E5);
}

.btm-nav-bar li {
  list-style-type: none;
}

.btm-nav-bar li a {
  font-size: 2rem;
  text-decoration: none;
  color: #1ac0c6;
}

.btm-nav-bar a:active {
  color: #2c698d;
}

.form-group {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0.75rem 0;
}

.form-group label {
  font-size: 1.5rem;
  padding-right: 1rem;
}

.form-group input,.form-group select,.form-group textarea {
  width: 90%;
  padding: 0.75em;
  border-radius: 8px;
  outline: none;
  border: none;
  background: #fff;
  font-size: 1rem;
}

.login-form {
  height: 90vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.login-form button, .login-form input[type="submit"], .btn-primary,.form-group input[type="submit"] {
  background: #2c698d;
  padding: 0.75rem;
  width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid #2c698d;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
} 

.btn-primary:hover {
  text-decoration: none;
}

.row {
  display: flex;
  align-items: center;
}

.col-10 {
  width: 80%;
}

.col-2 {
  width: 20%;
}

.container {
  padding: 0 0 70px 0;
}

.scroll-container {
  overflow-y: scroll;
  height: 75vh;
}

.search-bar {
  width: 95%;
  padding: 0.75rem;
  margin: 0 auto;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #E5E5E5;
  outline: none;
  font-size: 1rem;
}

.card {
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  margin: 0.5rem 0;
  
}

.avatar {
  height: 32px;
  width: 32px;
  border-radius: 50%;
}

.timestamp {
  font-size: 0.75rem;
  color: grey;
  padding-top: 6px !important;
}

.card p,.card h4 {
  padding: 0;
  margin: 0;
}

.col-12 {
  width: 100%;
}

.col-4 {
  width: 33.33333%;
}

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.card .icbo {
  font-size: 1.75rem;
}

a {
  text-decoration: none;
  color: #212121;
}

.splash-screen {
  min-height: 100vh;
  align-items: center;
  justify-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
}

.top-shape {
  height: 50vh;
  background: #008E98;
  clip-path: circle(75% at 50% 0%);
}

.splash-screen h1 {
  font-family: 'Nunito', sans-serif;
  width: 75%;
  margin: 0 auto;
  text-align: center;
  font-size: 1.5rem !important;
}

.logo {
  font-family: 'Nunito', sans-serif;
  font-weight: bold;
  color: #fff;
  font-size: 2em;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 154px;
  margin: 0 auto;
  transform: translateY(-5vh);
}

.logo-box {
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1px;
}

.bg-teal {
  background: #008E98;
  color: #fff;
  border: 1px solid #008E98;
}

.bg-orange {
  background: #F48121;
  color: #fff;
  border: 1px solid #F48121;
}

.bg-red {
  background: #d00000;
  color: #fff;
  border: 1px solid #d00000;
}

.bg-green {
  background: #2C6E49;
  color: #fff;
  border: 1px solid #2C6E49;
}

.logo-box-container:nth-child(2) {
  margin-top: 0.5em;
}