:root {
  --cm-pink: #e3226f;
  --cm-red: #e3226f;
  --cm-blue: #0064ab;
  --cm-lightblue: #00b2e8;
  --cm-yellow: #ffd000;
  --cm-green: #c0d62f;
  --cm-purple: #9c2890;
}

.login-body {
  background-image: url("https://www.mychefmod.com/im/chefmod-background.jpg");
  background-size: cover;
  position: fixed;
  min-width: 100%;
  min-height: 100%;
}

.login-container {
  background-color: rgba(250, 250, 250, 0.9);
  opacity: 0.9;
  width: 650px;
  height: 450px;
  padding: 35px;
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  border-radius: 10px;
}

.col-lg-5,
.col-lg-7 {
  text-align: center;
}

.blogLogo {
  max-width: 110px;
  height: 117px;
}

.refer-a-friend-logo {
  max-width: 110px;
}

.refer-a-friend {
  font-size: 0.8rem;
  font-weight: 700;
}

.refer-a-friend a:hover {
  text-decoration: none;
}

.chefModLogo {
  max-width: 250px;
  height: 85px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.store-logo-section {
  display: flex;
}
.flex-middle {
  display: flex;
  align-items: center;
}
.google-play-section {
  padding: 10px 0px;
}
.store-logo-div {
  text-align: center;
  height: 35px;
}
.store-qr-div {
  text-align: center;
}
.store-logo {
  width: -webkit-fill-available;
  max-height: 34px;
  border-radius: 5px;
}
.store-qr {
  margin-top: 10px;
  /* width: -webkit-fill-available; */
  width: 100%;
}
.pr-10 {
  padding-right: 10px;
}
.pl-10 {
  padding-left: 10px;
}
a {
  cursor: pointer;
  text-decoration: none;
  color: var(--cm-blue);
}

.loginHeading {
  margin-left: 15%;
}
.login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-group {
  /* margin-top: 20px; */
  max-width: 300px;
  margin-left: 5%;

  width: 100%;
}
.forgot-pwd-btn {
  text-align: center;
  margin-top: 1px;
  margin-bottom: 1px;
  text-decoration: underline;
}
.back-to-login {
  text-decoration: underline;
}
.status-text-block {
  position: relative;
}
.status-text-container {
}
.status-code-txt {
  text-align: center;
}
.action-btn-container {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  margin-bottom: 20px;
  text-align: center;
}
.infoMessage {
  text-transform: uppercase;
  color: red;
  font-weight: bold;
  text-align: center;
  margin-left: 5%;
}

.btn-primary {
  background-color: var(--cm-green) !important;
  border: 2px var(--cm-green) solid !important;
  font-size: 16px;
  outline: 0;
}

.alert-danger {
  background-color: red;
  border: 2px solid red;
  color: white;
}

.blogBorder {
  border-right: 1px solid gray;
}

.blog {
  font-size: 0.8rem;
  font-weight: 700;
}
.blog h4 {
  font-size: 1rem;
}

.blog > a:hover {
  text-decoration: none;
}
.error-msg-block {
  width: 100%;
  text-align: center;
  position: relative;
}
.forgot-pwd-form{
  padding-top: 20px;
}
@media only screen and (max-width: 575px) {
  .login-container {
    margin: 0;
    width: 100%;
    height: 100%;
    padding-top: 10%;
    padding-bottom: 100%;
  }
  .form-group,
  .loginHeading,
  .infoMessage {
    margin-left: 0;
    margin-top: 4px;
  }

  .blogBorder {
    border-right: none;
  }
}

@media only screen and (max-height: 600px), (max-width: 320px) {
  .login-container {
    padding: 10px;
  }
}

@keyframes spinner {
  0% {
    transform: translate3d(-50%, -50%, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(-50%, -50%, 0) rotate(360deg);
  }
}

.spinner {
  position: absolute;
  transition: opacity linear 0.1s;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}
.spinner::before {
  /* animation: spin 1s ease-in-out infinite; */
  animation: 1s linear infinite spinner;
  border: solid 3px #eee;
  border-bottom-color: #ef6565;
  border-radius: 50%;
  content: "";
  height: 40px;
  left: 50%;
  opacity: inherit;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  transform-origin: center;
  width: 40px;
  will-change: transform;
}
