/* =========================
   LOGIN PAGE
   Body class="login-page"
   ========================= */
body.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #0d0c31;
}

body.login-page .login-container {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

body.login-page .logo {
  width: 60px;
  height: 60px;
  background-image: url('../images/soft.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 22px;
  font-weight: bold;
  color: white;
  box-shadow: 0px 8px 24px rgba(0,0,0,0.4);
}

body.login-page .welcome-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

body.login-page .welcome-subtitle {
  font-size: 14px;
  color: #888;
  margin-bottom: 32px;
}

body.login-page .form-group { margin-bottom: 20px; text-align: left; }
body.login-page .form-label { font-size: 12px; color: #888; margin-bottom: 8px; display: block; }
body.login-page .form-input {
  width: 100%;
  height: 48px;
  background-color: #2a2a2a;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 14px;
  color: white;
}
body.login-page .form-input:focus { outline: none; border-color: #155dfc; }

body.login-page .password-container { position: relative; }
body.login-page .password-container .form-input { padding-right: 40px; }
body.login-page .password-toggle {
  position: absolute;
  right: 0;
  top: 0;
  height: 48px;
  width: 40px;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

body.login-page .sign-in-button {
  width: 100%;
  height: 48px;
  background-color: #155dfc;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}
body.login-page .sign-in-button:hover { background-color: #1347d4; }