/* auth.ejs styles */

* {
  padding: 0;
  margin: 0;
}
.out-container{
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
}
.container {
  display: flex;
  align-items: center;
  align-content: center;
}
h2 {
  text-align: center;
}
.google-btn {
  display: flex;
  white-space: nowrap;
  width: 50%;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.google-svg {
  max-height: 20px;
  margin-right: 10px;
}
.rounded-t-5 {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.landing-img {
  padding-left: 48px !important;
}

@media (min-width: 991px) {
  .rounded-tr-lg-0 {
    border-top-right-radius: 0;
  }

  .rounded-bl-lg-5 {
    border-bottom-left-radius: 0.5rem;
  }
}
@media (max-width: 991px) {
  .google-btn {
    width: 100%;
    margin-top: 50px;
  }
}
/* success.ejs styles */
.row {
  border-radius: 10px;
  align-items: center;
}
.text-muted {
  padding: 10px;
}
@media (max-width: 991px) {
  .success-col {
    text-align: center;
  }
}

img.google-svg {width:20px;}