@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");
* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Space Grotesk", Inter, system-ui, -apple-system, Segoe UI,
    Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #0b3b4c;
}

.container,
.container-fluid {
  margin: 0 !important;
  width: 100%;
  max-width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.wrapper {
  width: 100%;
}

.main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.row {
  width: 100%;
  height: auto;
  margin-left: 0;
  margin-right: 0;
}

.main,
.row,
.side-image,
.right {
  min-height: 100dvh;
  min-height: 100vh;
}

.side-image {
  position: relative;
  padding: 30px;
  overflow: hidden;
}

.side-hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.logo-img {
  width: 110px;
  position: absolute;
  top: 20px;
  left: 20px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}

.right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #cfedff, #ffffff, #cbf7ffd6);
  padding: 24px;
}

.brand-logo {
  width: 170px;
  height: auto;
  display: block;
  align-items: center;
  margin: 0 auto;
}
.brand-row {
  text-align: center;
  margin-bottom: 2%;
}

.input-box {
  box-sizing: border-box;
  width: min(426px, 80%);
  height: auto;
  padding: 30px;
  border-radius: 15px;
  /* background-color: #fff; */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);  */
  color: #00b2dc;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 5%;
  align-items: stretch;

  overflow: hidden;
}

.input-box h2 {
  text-align: center;
  margin-bottom: 7%;
  font-size: .8rem;
}

.input-group {
  margin-bottom: 5%;
  display: flex;
  flex-direction: column;
}

.input-group label {
  margin-bottom: 2%;
  font-size: 1rem;
}

.input-group input {
  width: 100%;
  padding: 14px;
  border: none;
  background: rgba(171, 171, 171, 0.2);
  font-size: 1rem;
  border-radius: 8px;
}

.input-group input:focus {
  border: 0.1rem solid #00b2dc;
  outline: none;
}
.input-group input::placeholder {
  color: #8a8a8a;
}

.password-group {
  position: relative;
}

button {
  width: 100%;
  padding: 14px;
  margin-top: 16px !important;
  border: none;
  background: #00b2dc;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 8px !important;
  transition: background 0.3s ease;
}
button:hover {
  background: #3197ce;
  transform: scale(1.01);
  border: none;
}
button:focus {
  outline: none !important;
}

.sso-link {
  text-align: center;
  margin-top: 1.3rem;
}
.sso-link p {
  color: #8a8a8a;
}

.sso-link a {
  color: #00b2dc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.sso-link a:hover {
  color: #14a0bf;
  text-decoration: underline;
}

/* Error message styling */
#statusMessage {
  display: none;
}

#statusMessage.show-error {
  display: block;
  color: #b91c1c;
  background-color: #fff5f5;
  border: 2px solid #ef4444;
  border-radius: 6px;
  padding: 10px 12px;
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}
