@font-face {
  font-family: "Avenir Roman";
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/plugins/tsc-customizations/fonts/AvenirLTStd-Roman.otf)
    format("OpenType");
}
@font-face {
  font-family: "Avenir Next Regular";
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/plugins/tsc-customizations/fonts/AvenirNextLTPro-Regular.otf)
    format("OpenType");
}
@font-face {
  font-family: "Avenir Next Bold";
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/plugins/tsc-customizations/fonts/AvenirNextLTPro-Bold.otf)
    format("OpenType");
}
@font-face {
  font-family: "Avenir Book";
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/plugins/tsc-customizations/fonts/AvenirLTStd-Book.otf)
    format("OpenType");
}
@font-face {
  font-family: "Avenir Black";
  font-weight: 400;
  font-display: swap;
  src: url(/wp-content/plugins/tsc-customizations/fonts/AvenirLTStd-Black.otf)
    format("OpenType");
}

/* Full‐page background */
body.login {
  background: #000d12;
  background-size: cover;
  font-family: 'Avenir Next Regular', sans-serif;
  color: #fff;
}

/* Logo replacement */
.login h1 a {
  background-image: url("https://academy.thesalescoach.eu/wp-content/uploads/2020/12/Logo-Sales-Coach-diap-RGB.png");
  width: 240px;
  height: 80px;
  background-size: contain;
}

/*———————————————————
  Global & Background
———————————————————*/
body.login {
  margin: 0;
  padding: 0;
  background-color: #188A84;
  background: linear-gradient(112.75deg, rgba(66, 184, 178, 90%), rgba(66, 184, 178, 90%) 150px, #188A84 150px, #188A84);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login #backtoblog a, .login #nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.login #backtoblog a:hover, .login #nav a:hover, .login h1 a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/*———————————————————
  Brand Header
———————————————————*/
.custom-login-brand {
  text-align: center;
  margin-bottom: 30px;
}
.custom-login-brand img {
  width: 80px;
  height: 80px;
  display: block;
  margin: 0 auto 10px;
}
.custom-login-brand h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
}

/*———————————————————
  Form Container (Glassmorphism)
———————————————————*/
#login {
  width: 100%;
  max-width: 400px;
  padding: 0;
}
.login form {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0;
  padding: 40px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/*———————————————————
  Labels & Inputs
———————————————————*/
.login label:not([for="rememberme"]) {
  display: block;
  color: #fff;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}
.login input[type="text"],
.login input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  border-radius: 150px;
  color: #fff;
  font-size: 16px;
  box-sizing: border-box;
}
.login input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

input[type=checkbox]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime-local]:focus, input[type=datetime]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=password]:focus, input[type=radio]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus {
  border-color: #42b8b2 !important;
  box-shadow: 0 0 0 1px #42b8b2 !important;
}

.wp-core-ui .button-secondary {
    color: #42b8b2 !important;
}

/*———————————————————
  Submit Button
———————————————————*/
.wp-core-ui .button-primary, .wp-core-ui .wp-generate-pw {
  width: 100%;
  padding: 0 12px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 150px;
  background-color: #42b8b2 !important;
  color: #000000;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.2s ease;
  margin-bottom: 5px;
}

.wp-core-ui .wp-generate-pw {
	font-size: 14px;
}

.wp-core-ui .button-primary:hover, .wp-core-ui .wp-generate-pw:hover {
  transform: translateY(-2px);
  color: #fff;
}

.wp-core-ui .button-secondary:hover, .wp-core-ui .button.hover, .wp-core-ui .button:hover, .wp-core-ui .button-secondary:focus, .wp-core-ui .button.focus, .wp-core-ui .button:focus {
	border: none;
    color: #fff;
    box-shadow: none;
}

.login #pass-strength-result {
	margin-top: 5px;
    border-radius: 100px;
}

/*———————————————————
  Footer Links
———————————————————*/
#nav {
  text-align: center;
  margin-top: 24px;
}
#nav a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

#backtoblog {
    display: none;
}

.login .notice {
    color: #000;
}

.language-switcher {
    display: none;
}