@import url("https://fonts.googleapis.com/css?family=Raleway:400,700");
@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Lobster&family=Mina&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Raleway, sans-serif;
}

body {
  background-image: url("../img/bg.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: left;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
.logoCover {
  border-radius: 10px;
  margin-right: 15px;
  margin-left: 15px;
  margin-top: 15px;
  width: 55px;
  height: 55px;
  background-color: #555555;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  z-index: 9999;
  transform: rotate(45deg);
}
.cLogo {
  transform: rotate(-45deg);
  max-width: 100%;
  max-height: 100%;
  border-radius: 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  border: 1px solid #555555;
}

.lTitle {
  margin-top: 5px;
}

.bTitle {
  padding: 0;
  margin: 0;
  font-size: 30px;
  line-height: 50px;
  font-family: "Bree Serif", serif;
  color: #152848;
}

.bMotto {
  margin-left: 8px;
  font-size: 11px !important;
  font-weight: 600;
  margin-bottom: 0 !important;
  font-family: "Lobster", sans-serif;
  color: #152848;
}

.greeting {
  font-family: "Bree Serif", serif !important;
  color: #f57c47;
  display: inline-block;
  opacity: 0;
  filter: blur(4px);
}

h5 {
  font-family: "Montserrat Medium";
  max-width: 40ch;
  text-align: center;
  transform: scale(0.94);
  animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
}
@keyframes scale {
  100% {
    transform: scale(1);
  }
}

.greeting:nth-child(1) {
  animation: fade-in 1s 0.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.greeting:nth-child(2) {
  animation: fade-in 1s 0.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.greeting:nth-child(3) {
  animation: fade-in 1s 0.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.greeting:nth-child(4) {
  animation: fade-in 1s 0.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

@keyframes fade-in {
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.log-box {
  position: static;
  width: 340px;
  height: 400px;
  padding: 20px;
  margin: auto;
  margin-top: 100px;
  background: rgba(255, 255, 255, 0.51);
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  backdrop-filter: blur(3.7px);
  -webkit-backdrop-filter: blur(3.7px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.log-box input {
  width: 100%;
}

.log-box input:focus {
  box-shadow: none;
}

.logButton {
  margin-top: 10px;
  width: 100%;
  background-color: #f57c47;
  color: #ffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.logButton:hover {
  background-color: #2d3a64;
  color: #ffff;
}

#alert {
  text-align: center;
  margin-bottom: 0.2rem;
}

.developer p {
  font-style: italic;
  font-weight: bold;
  font-size: 10px;
  animation: color-change 10s infinite;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  top: 60px;
  z-index: 3;
}
@media only screen and (max-width: 600px) {
  .title {
    margin-top: 0px;
    padding-top: 20px;
  }
}

/*Developed By Pavithra Chathuramadu*/
