body {
  margin: 0px; 
  text-align: center;
}

#loader {
    display: block;
    text-align: center;
}

p, span, h3, h2, h1, h4, h5 {
  font-family: "Arial";
}

/* Loader Animation */
.lds-ellipsis {
    display: inline-block;
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    margin-left: -40px;
  }
  .lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #000;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
  }

  .lds-ring {
    display: none;
    position: relative;
    width: 15px;
    height: 15px;
    margin-top: -25px;
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 25px;
    height: 25px;
    margin: 8px;
    border: 4px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 10px 0;
}

.footer a {
  color: black;
  font-size: 30px;
}

#current_status {
  background-color: indianred;
  padding: 5px;
  border-radius: 40px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 20px;
}

.status_bar {
  display: flex;
  align-items: center;
  font-size: 17px;
  margin: 0;
  justify-content: center;
  background-color: lightgray;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-left: -8px;
}

.status_bar p {
  margin: 0;
}

.action_items-section {
  display: flex;
  flex-direction: column;
  padding: 10px;
  position: relative;
}

.action_items-row {
  display: flex;
  width: 100%;
  justify-content: center;
}

.action_item {
  width: 45%;
  max-width: 250px;
  margin: 5px;
  border-radius: 25px;
  background-color: lightgray;
  display: block;
  height: 125px;
  padding: 10px;
}

.action_item i {
  font-size: 50px;
}

.action_item p {
  font-size: 14px;
}

.timer {
  text-align: center;
  font-size: 15px;
}

.wrapper {
  height: 435px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#login {
  background: #e9e9e9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 88%;
  max-width: 280px; /* Slightly less than body to fit inside with padding */
  top: 40%;
}

h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
}

input[type="email"],
input[type="password"] {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
}

button[type="submit"] {
  padding: 10px;
  background: #333; /* Adjust the color to fit your brand */
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

button[type="submit"]:hover {
  background: #242424; /* A shade darker for hover effect */
}
