/* ============================================
   Zeus Store — Login Page
   Primary: #fec901 (yellow) | #030303 (black)
   ============================================ */

h2 { color: #f0f0f0; }
p  { color: #cccccc; }

body, html {
  height: 100%;
  background-repeat: no-repeat;
  background: linear-gradient(135deg, #030303 0%, #1a1a1a 50%, #0d0d0d 100%) !important;
  background-size: 100% 100%;
}

.card-container.card {
  width: 350px;
  padding: 40px 40px;
}

.btn {
  font-weight: 700;
  height: 36px;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: default;
}

/* Card component */
.card {
  background-color: #ffffff;
  padding: 28px 28px 36px;
  margin: 0 auto 25px;
  margin-top: calc(40vh - 173px);
  border-radius: 6px;
  border-top: 4px solid #fec901;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.6);
}

.profile-img-card {
  width: 110px;
  height: auto;
  margin: 0 auto 14px;
  display: block;
  /*border-radius: 50%;*/
  filter: drop-shadow(0 0 0.3rem rgba(254, 201, 1, 0.4));
}

/* Form styles */
.profile-name-card {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 10px 0 0;
  min-height: 1em;
}

.reauth-email {
  display: block;
  color: #404040;
  line-height: 2;
  margin-bottom: 10px;
  font-size: 14px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
}

.form-signin #inputEmail,
.form-signin #inputPassword {
  direction: ltr;
  height: 44px;
  font-size: 16px;
}

.form-signin input[type=email],
.form-signin input[type=password],
.form-signin input[type=text],
.form-signin button {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  z-index: 1;
  position: relative;
  box-sizing: border-box;
}

.form-signin .form-control:focus {
  border-color: #fec901 !important;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(254, 201, 1, 0.5) !important;
}

/* Login button — brand yellow (overrides btn-success Bootstrap 3) */
.btn-success.btn-signin,
.btn.btn-signin {
  background-color: #fec901 !important;
  background-image: none !important;
  border-color: #e0b200 !important;
  color: #030303 !important;
  padding: 0px;
  font-weight: 700;
  font-size: 15px;
  height: 42px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn-success.btn-signin:hover,
.btn-success.btn-signin:active,
.btn-success.btn-signin:focus,
.btn.btn-signin:hover,
.btn.btn-signin:active,
.btn.btn-signin:focus {
  background-color: #e0b200 !important;
  background-image: none !important;
  border-color: #c9a000 !important;
  color: #030303 !important;
  box-shadow: 0 2px 8px rgba(254, 201, 1, 0.4);
}

.forgot-password {
  color: #fec901;
}

.forgot-password:hover,
.forgot-password:active,
.forgot-password:focus {
  color: #e0b200;
}
