/********************************************************
 * LoginRegisterPro - Modern Glassy Style + Mini Cards
 ********************************************************/

/* Base Inputfields */
.LoginRegisterPro .Inputfield {
  clear: both;
  box-sizing: border-box;
  margin: 1% 0;
}


/* ===============================
   Login/Register Secondary Button Style
   =============================== */
.LoginRegisterLinks {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0 !important;
  margin: 2rem 0 !important;
  list-style: none !important; /* remove bullets completely */
}

.LoginRegisterLinks li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important; /* override any inherited bullets */
}

.LoginRegisterLinks li a {
  display: inline-flex;
  flex-direction: row; /* horizontal layout for secondary buttons */
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 140px; /* make it look like a button */
  height: 48px;
  background: rgba(255,255,255,0.6); /* glassy secondary */
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px; /* rounded corners */
  text-decoration: none;
  color: #111e3c;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  padding: 0 16px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	  list-style: none !important; /* remove bullets completely */

}

/* SVG icon inside the button */
.LoginRegisterLinks li a svg {
  width: 20px;
  height: 20px;
  color: #ef3d26;
  flex-shrink: 0;
}

/* Hover / Active */
.LoginRegisterLinks li a:hover {
  background: #ef3d26;
  color: #fff;
  border-color: #ef3d26;
	  list-style: none !important; /* remove bullets completely */

}

.LoginRegisterLinks li a:hover svg {
  color: #fff;
}

.LoginRegisterLinks li a:active {
  transform: scale(0.97);
}

/* Mobile adjustments */
@media(max-width: 480px) {
  .LoginRegisterLinks li a {
    width: 100%;
    max-width: 200px;
    gap: 0.5rem;
  }
  .LoginRegisterLinks {
    gap: 0.5rem;
    flex-direction: column;
    align-items: center;
  }
}


.LoginRegisterPro .Inputfield:not(.InputfieldSubmit) {
  padding: 15px 18px !important;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 12px;
  background: rgba(255,255,255,0.6); /* glassy effect */
  transition: all 0.2s ease;
}

.LoginRegisterPro .Inputfield input[type=text],
.LoginRegisterPro .Inputfield input[type=email],
.LoginRegisterPro .Inputfield input[type=password],
.LoginRegisterPro .Inputfield textarea {
  width: 100% !important;
  padding: 12px;
  border: none;
  background: transparent;
  font-size: 1rem;
  color: #111e3c;
  outline: none;
}

/* Field Labels */
.LoginRegisterPro .InputfieldHeader {
  font-weight: bold;
  margin-bottom: 5px;
  color: #111e3c;
}

/* Field Detail / Hints */
.LoginRegisterPro .Inputfield .detail,
.LoginRegisterPro .Inputfield span.detail {
  font-size: 0.85rem;
  opacity: 0.8;
  color: #111e3c;
}

/* Column Handling */
.LoginRegisterPro .InputfieldColumnWidth {
  float: left;
  clear: none;
}
.LoginRegisterPro .InputfieldColumnWidth:not(.InputfieldColumnWidthFirst) {
  margin-left: 1%;
}
.LoginRegisterPro .InputfieldColumnWidthFirst {
  clear: both;
}

/* Submit Button */
.LoginRegisterPro .InputfieldSubmit input,
.LoginRegisterPro .InputfieldSubmit button {
  width: 100%;
  padding: 14px 20px;
  background: #ef3d26;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.LoginRegisterPro .InputfieldSubmit input:hover,
.LoginRegisterPro .InputfieldSubmit button:hover {
  background: #d32c1f;
}

.LoginRegisterPro .InputfieldSubmit input:active,
.LoginRegisterPro .InputfieldSubmit button:active {
  transform: scale(0.97);
}

/* Notices / Messages */
.LoginRegisterNotice {
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.LoginRegisterMessage {
  color: green;
  border: 1px solid green;
  background: rgba(0,128,0,0.05);
}

.LoginRegisterError {
  color: red;
  border: 1px solid red;
  background: rgba(255,0,0,0.05);
}

/* Mobile Responsiveness */
@media only screen and (max-width: 767px) {
  .LoginRegisterPro .InputfieldForm .Inputfield,
  .LoginRegisterPro .InputfieldColumnWidth,
  .LoginRegisterPro .InputfieldSubmit {
    clear: both;
    margin: 5px 0 !important;
    width: 100% !important;
  }
}

/* ================================
   Mini Card Style for Login/Register
   ================================ */
.user-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0;
  margin: 2rem 0;
  list-style: none; /* remove bullets */
}

.user-actions li {
  margin: 0;
  padding: 0;
}

.user-actions li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.6); /* glassy effect */
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  text-decoration: none;
  color: #111e3c;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
  padding: 10px;
}

.user-actions li a svg {
  margin-bottom: 0.5rem;
  color: #ef3d26;
  width: 28px;
  height: 28px;
}

/* Hover / Active */
.user-actions li a:hover {
  background: #ef3d26;
  color: #fff;
  border-color: #ef3d26;
}

.user-actions li a:hover svg {
  color: #fff;
}


.user-actions li a:active {
  transform: scale(0.97);
}

/* Mobile adjustments */
@media(max-width: 480px) {
  .user-actions li a {
    width: 100px;
    height: 100px;
  }
  .user-actions {
    gap: 0.5rem;
  }
}
