:root {
  --bg: linear-gradient(135deg,#eafff5,#f5fffb);
  --glass: rgba(255,255,255,0.65);
  --text: #222;
}

body.dark {
  --bg: linear-gradient(135deg,#0f2027,#203a43);
  --glass: rgba(20,20,20,0.6);
  --text: #f5f5f5;
}

body {
  background-image: url('../files/login-bg2.jpg');
  color: var(--text);
  background-repeat: none;
  background-size: cover;
  background-attachment: fixed;
  background-position: center ;
  font-family: "Segoe UI", sans-serif;
}

.login-box {
      /*width: 100%;*/
      max-width: 380px;
      background: #fff;
      opacity: .9;
      border-radius: 8px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.25);
      padding: 30px;
      /*margin: 10% 10% 0 38%;*/
    }

    .login-box .logo {
      text-align: center;
      margin-bottom: 25px;
      font-size: 24px;
      font-weight: bold;
      color: #1f2937;
    }

    .login-box .logo span {
      color: #0a9f7b;
    }

    .login-box h4 {
      text-align: center;
      margin-bottom: 20px;
      color: #555;
    }

    .form-control {
      height: 45px;
      border-radius: 6px;
      border: 1px solid #0a9f7b;
    }

    .input-group-addon {
      background: #f5f5f5;
      border: 1px solid #0a9f7b;
    }

    .btn-login {
      background: #0a9f7b;
      color: #fff;
      height: 45px;
      border-radius: 6px;
      font-weight: 600;
    }

    .btn-login:hover {
      background: #286090;
      color: #fff;
    }

    .login-footer {
      text-align: center;
      margin-top: 15px;
    }

    .login-footer a {
      color: #337ab7;
      text-decoration: none;
    }

    .login-footer a:hover {
      text-decoration: underline;
    }

    .alert {
      margin-bottom: 15px;
    }

    @media (max-width: 480px) {
      .login-box {
        margin: 15px;
      }
    }

.toast-alert {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #0a9f7b;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  display: none;
  z-index: 9999;
}

.btn-social {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border-radius: 30px;
  color: #fff;
  text-align: center;
}

.btn-facebook {
  background: #1877f2;
}

.btn-google {
  background: #db4437;
}

.btn-email {
  background: #6c757d;
}

.btn-social i {
  margin-right: 8px;
}

#emailLogin{
  display: none;
}
