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

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

.btm-nav-bar {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 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;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btm-nav-bar li a {
  font-size: 2rem;
  text-decoration: none;
  color: #CFCFCF;
  line-height: 1.75rem;
}

.btm-nav-bar li span {
  font-size: 0.8rem;
  font-weight: bold;
  color: #CFCFCF;
}

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

.btm-nav-bar .active a {
  color: #01A9B4;
}

.active span {
  color: #01A9B4 !important;
}

.form-group {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95%;
  margin: 0.75rem auto;
  background: #fff;
  border-radius: 8px;
}

.form-group label {
  font-size: 1.25rem;
  padding-left: 0.5rem;
}

.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: flex-start;
  flex-direction: column;
}

.login-form a span {
  color: #3655b3;
  font-weight: bold;
}

.login-form button, .login-form input[type="submit"], .btn-primary,.form-group input[type="submit"] {
  background: #01A9B4;
  padding: 0.75rem;
  width: 100%;
  margin: 0 auto;
  border-radius: 14px;
  border: 1px solid #01A9B4;
  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 {
  flex: 10;
}

.col-2 {
  flex: 2;
}

.col-8 {
  flex: 8;
}

.col-4 {
  flex: 4;
}

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

.scroll-container {
  overflow-y: scroll;
  padding-bottom: 12px;
}

.search-bar {
  width: 100%;
  padding: 0.5rem;
  padding-left: 2.5rem;
  margin: 0 auto;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #fff;
  outline: none;
  font-size: 1rem;
}

.search-bar-label {
  position: absolute;
  top: 10px;
  left: 0.75rem;
}

.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;
}

.fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: fixed;
  right: 1rem;
  bottom: 7rem;
  background: #008E98;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  filter: drop-shadow(2px 2px 6px #E5E5E5);
  font-size: 3rem;
}
.register {
  display: flex;
  height: 90vh;
  flex-direction: column;
  align-items: flex-start;
}

.register i {
  font-size: 1.25rem;
  padding-left: 0.5rem;
  color: #01A9B4;
}

.profile-img-container {
  width: 30%;
  margin: 0 auto;
  height: 100px;
  position: relative;
}

.profile-img-container img {
  width: 100%;
  border: none;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  overflow: hidden;
}
.profile-img-container i {
  position: absolute;
  top: 60%;
  right: 12.5%;
  font-size: 1.5rem;
  color: #ebedef;
}
.top-nav-bar {
  padding: 0.75rem 0;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  filter: drop-shadow(2px 2px 2px #E5E5E5);
}
.top-nav-bar li {
  list-style-type: none;
}
.top-nav-bar li a {
  padding: 0 1rem;
  font-size: 1.5rem;
}


.top-header {
  background: #01A9B4;
  padding: 0.5rem 0.75rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  border-radius: 0 0 14px 14px;
}

.top-header h2 {
  padding: 0.5rem 0 0 0;
  margin: 0;
  color: #fff;
  font-size: 26px;
}
.top-header p {
  padding: 0;
  color: #fff;
}
.login label {
  color: #01A9B4;
}

.register label {
  color: #01A9B4;
}

.register h2 {
  padding: 0;
  margin: 0;
} 
.register p {
  padding: 0.25rem 0;
  margin: 0;
}

.form-group input:focus ~ .form-group {
  border: 1px solid #01A9B4;
  transition: 0.3s;
} 
.login .form-group,.register .form-group {
  border: 1px solid #01A9B4;
}

.continue-text {
  color: grey;
  text-align: center;
}

.continue-text span {
  font-weight: bold;
  color: #01A9B4;
}

.login a, .register a {
  color: #01A9B4;
  text-align: center;
  font-weight: bold;
  width: 100%;
  margin-top: 1.25em;
}

.transparent-btn {
  width: 38px;
  height: 38px;
  background: rgba(0,0,0,0.4);
  color: #fff;
  border-radius: 12px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}