@import "https://cdn.jsdelivr.net/npm/bulma@0.9.2/css/bulma.min.css";
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Palanquin+Dark&display=swap");
@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,300,200,700");
html, body {
  margin: 0;
  background-color: white;
  font-family: Poppins, "Helvetica Neue", sans-serif;
}

.image-bg {
  background-image: linear-gradient(to right, #e8f9fe, #f0eefb) !important;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.full-height-div {
  height: 100%;
  padding: 2rem;
}

.self-align-center {
  align-self: center !important;
}

.login-column {
  height: 500px;
}

.login-image {
  width: 100px;
  border-radius: 50%;
}

.login-card {
  border-radius: 15px;
  padding: 2rem 2rem;
}

.feed-placeholder {
  width: 400px;
}

.home {
  padding: 1rem 2rem;
}

.image-placeholder {
  width: 100px;
}

.timer {
  font-size: 6rem !important;
}

.buttons-container {
  margin-top: 2.5rem;
}

.contest-title {
  margin-bottom: 2.5rem;
}

a {
  color: black;
}

.navbar-link:not(.is-arrowless)::after {
  border-color: transparent !important;
}

.navbar-item-notification {
  width: 400px;
}

.wrap-text {
  white-space: pre-wrap;
}

.navbar-dropdown {
  max-height: 500px;
  overflow: scroll;
}

.error-image {
  width: 400px;
  max-width: 15rem;
}

.tags {
  text-align: center !important;
  justify-content: center;
}

/* Login */
.error-message {
  color: #ff2222;
}

.bg {
  background-image: linear-gradient(to right bottom, #9a9a9a, #848484, #6f6f6f, #5a5a5a, #464646, #3b3b3b, #303030, #252525, #1f1f1f, #191919, #141414, #0c0c0c);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

.columns-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  max-height: 100vh;
  background-image: url("https://res.cloudinary.com/www-santhoshthomas-xyz/image/upload/v1620796347/portfolio/bg8_ub3ck3.png");
  background-size: contain;
  background-repeat: no-repeat;
  animation-name: MOVE-BG;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes MOVE-BG {
  from {
    background-size: 80%;
  }
  to {
    background-size: 84%;
  }
}
@keyframes MOVE-BG-MOBILE {
  from {
    background-size: 90%;
  }
  to {
    background-size: 110%;
  }
}
.login-box {
  animation: fadeIn 1s;
  z-index: 10;
  border-radius: 5px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  min-width: 400px;
  min-height: 200px;
  padding: 4rem 3rem;
  background-color: white;
}

.login-box a {
  text-decoration: none;
}

.login-box .login {
  display: none;
}

.login-box .signin {
  animation: fadeIn 0.8s;
}

.login-box .signup {
  animation: fadeIn 0.8s;
}

.login-box .action p {
  display: inline;
}

.login-box .action .signup {
  float: right;
  font-weight: 700;
}

.login-box .input-field {
  width: 100%;
  position: relative;
}

.login-box .input-field i {
  position: relative;
  position: absolute;
  top: 10px;
  left: 50px;
}

.login-box .input-field #password {
  background: url(https://res.cloudinary.com/www-santhoshthomas-xyz/image/upload/v1620796331/portfolio/lock_dnkpk8.png) no-repeat 5%;
  background-size: 20px;
  z-index: 50;
}

.login-box .input-field #email {
  background: url(https://res.cloudinary.com/www-santhoshthomas-xyz/image/upload/v1620796341/portfolio/name_1_rgo5hw.png) no-repeat 5%;
  background-size: 20px;
  z-index: 50;
}

.login-box .input-field #tel {
  background: url("../../../assets/telephone.png") no-repeat 5%;
  background-size: 20px;
  z-index: 50;
}

.login-box .input-field input {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: 100%;
  display: block;
  padding: 15px 35px;
  padding-left: 55px;
  margin: 26px 0;
  border: none;
  border-left: 4px solid #0e1776;
  border-radius: 4px;
}

.login-box-button {
  position: relative;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-box-button button {
  padding: 0.8rem 2rem;
  background: #0e1776;
  color: white;
  font-weight: 800;
  border: none;
  transition: all 1s ease-in;
  background-position: 0;
  border-radius: 4px;
}

.login-box-button button:active {
  background-image: linear-gradient(to right top, #0e1776, #091b97, #031db9, #011edc, #081dff);
  background-position: 400%;
  transform: scale(1.1);
}

.login-box .topline {
  display: inline-block;
  position: relative;
  position: relative;
}

.login-box .topline:after {
  content: "";
  position: absolute;
  width: 40%;
  transform: scaleX(1);
  height: 5px;
  top: -15px;
  left: 0;
  background-color: #0e1776;
}

@media screen and (max-width: 776px) {
  .login-box {
    padding: 4rem 2rem !important;
    right: unset !important;
    width: 50px !important;
    max-width: 100px;
  }
}
.has-error-bg {
  background-color: tomato !important;
}

.has-error-fg {
  color: tomato !important;
}

.error-topline:after {
  background-color: tomato !important;
}

.columns-login-error {
  background-image: url("https://i.imgur.com/d41DlTV.png") !important;
}

.login-box .input-field-error {
  margin-top: 1em;
  text-align: center;
  width: 300px;
}

.login-box .input-field-error span {
  color: tomato;
}

/*# sourceMappingURL=style.css.map */
