.login-page-bg {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.login-card {
  max-width: 440px;
  width: 100%;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

.login-logo {
  max-width: 220px;
  height: auto;
}

.sso-divider {
  color: #8c98a4;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.loginBtn {
  box-sizing: border-box;
  position: relative;
  margin: 0.2em 0;
  padding: 0 15px 0 54px;
  border: none;
  text-align: center;
  font-weight: 600;
  line-height: 48px;
  white-space: nowrap;
  border-radius: 10px;
  font-size: 15px;
  color: #fff;
  transition: all 0.2s ease-in-out;
}

.loginBtn:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 100%;
}

.loginBtn:focus {
  outline: none;
}

.loginBtn:active {
  box-shadow: inset 0 0 0 32px rgba(0, 0, 0, 0.1);
}

.loginBtn--google {
  font-family: "Roboto", Roboto, arial, sans-serif;
  background: #ffffff;
  border: 1px solid #dadce0;
  color: #3c4043;
}

.loginBtn--google:hover,
.loginBtn--google:focus {
  color: #202124;
  background-color: #f8f9fa;
  border-color: #d2e3fc;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.15);
}

.loginBtn--facebook {
  font-family: "Roboto", Roboto, arial, sans-serif;
  background: #1877f2;
  border: 1px solid #1877f2;
  color: #fff;
}

.loginBtn--facebook:hover,
.loginBtn--facebook:focus {
  color: #fff;
  background-color: #166fe5;
  box-shadow: 0 0 3px 3px rgba(24, 119, 242, 0.3);
}

.loginBtn--apple {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000;
  border: 1px solid #000;
  color: #fff;
}

.loginBtn--apple:hover,
.loginBtn--apple:focus {
  color: #fff;
  background: #222;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.3);
}

.loginBtn--microsoft {
  font-family: "Segoe UI", sans-serif;
  background: #2f2f2f;
  border: 1px solid #2f2f2f;
  color: #fff;
}

.loginBtn--microsoft:hover,
.loginBtn--microsoft:focus {
  color: #fff;
  background: #0078d4;
  border-color: #0078d4;
  box-shadow: 0 0 3px 3px rgba(0, 120, 212, 0.3);
}

.login-provider-icon {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 20px;
  height: 20px;
}

.login-provider-icon--google {
  background: url(/public/Google-app-icon-small1.png) no-repeat;
  background-size: cover;
  border-radius: 50%;
}

.login-provider-icon--facebook {
  left: 14px;
  top: 14px;
  width: 20px;
  height: 20px;
  font-weight: bold;
  font-family: sans-serif;
  font-size: 20px;
  line-height: 20px;
  color: #fff;
}

.login-provider-icon--apple {
  top: 12px;
  width: 22px;
  height: 22px;
}

.login-provider-icon--microsoft {
  left: 13px;
  top: 13px;
  width: 22px;
  height: 22px;
}

.login-button {
  width: 100%;
  text-align: center;
  padding-left: 0;
  position: relative;
}

.workspace-url-input {
  text-align: right;
  border-radius: 8px 0 0 8px;
  padding: 10px 14px;
}

.workspace-url-addon {
  background-color: #0d6efd;
  padding: 10px 14px;
  color: #fff;
  border-radius: 0 8px 8px 0;
}

.login-message {
  color: #dc3545;
}

.login-footer {
  margin-top: 10px;
}

.login-error {
  margin-bottom: 12px;
}

.cursor-pointer {
  cursor: pointer;
}

#togglePasswordBtn {
  cursor: pointer;
  border-color: #ced4da;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

#togglePasswordBtn:hover {
  background-color: #e9ecef !important;
  color: #212529 !important;
}


