/* Body styling */
body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: #f0f2f5;
}

/* Login container */
.login-container {
  background: #fff;
  padding: 80px 60px 40px 60px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  width: 350px;
  user-select: none;
}

.sublink {
  text-align: end;
  padding: 20px 8px 0 0;
  color: darkgrey;
  font-weight: 100;
}

.sublink:hover {
  text-decoration: underline;
  cursor: pointer;
}

/* Logo */
.logo {
  width: 200px;
  margin-bottom: 15px;
}

/* Description text */
.description {
    margin-bottom: 35px;
    font-size: 18px;
    color: black;
    line-height: 1.5;
}

/* Common button styling */
.idp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  color: #fff;
  /* transition: background 0.3s; */
}

/* Icon inside button */
.idp-button .icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

/* Individual IdP styles */
.microsoft {
  background: #03A9F4;
}

.microsoft:hover {
  background: #c33d2e;
}

.facebook {
  background: #3b5998;
}

.facebook:hover {
  background: #314b85;
}

.def {
  background: #324960;
}

.def:hover {
  background: #222;
}

.sso {
  background: #007bff;
}

.sso:hover {
  background: #0069d9;
}


.login-row {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.button-flex {
  user-select: none;
  --bhw: 50px;
  height: var(--bhw);
  background-color: #0069d9;
  display: grid;
  grid-template-columns: var(--bhw) 1fr;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.button-flex i {
  color: #fff;
  font-size: 25px;
}

.button-flex-txt {
  display: flex;
  justify-content: left;
  color: #fff;
  font-weight: 600;
}

.button-flex.def {
  background-color: #324960;
}

.button-flex:hover {
  filter: brightness(1.2);
  /* dims background slightly */
}

.brand-name {
  font-weight: 600;
  /* semi-bold */
  color: #0069d9;
  /* brand blue (same as Azure button) */
}

@media screen and (width <=800px) {
  body {
    background: white;
  }

  /* Login container */
  .login-container {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: none;
    text-align: center;
    width: 350px;
  }

}