@charset "UTF-8";

/* ============================================
   ULTRA-PREMIUM LMS LOGIN EXPERIENCE
   Fortune 500 Education Platform Design
   Award-Winning Luxury Interface
   ============================================ */

/* Global Styles - Luxury Premium Background */
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: #0a0e27;
  background: radial-gradient(ellipse at top, #1a1f3a 0%, #0a0e27 50%, #000000 100%);
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

/* Luxury Animated Background - Multi-layer */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(255, 119, 0, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 60%, rgba(255, 114, 0, 0.12) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(255, 110, 0, 0.1) 0%, transparent 40%);
  animation: breathe 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Premium Particle System */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.04) 0%, transparent 2%),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.03) 0%, transparent 2%),
    radial-gradient(circle at 45% 65%, rgba(255, 255, 255, 0.05) 0%, transparent 2%),
    radial-gradient(circle at 70% 85%, rgba(255, 255, 255, 0.04) 0%, transparent 2%),
    radial-gradient(circle at 30% 45%, rgba(255, 255, 255, 0.03) 0%, transparent 2%);
  background-size: 100% 100%;
  animation: floatParticles 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes breathe {
  0%, 100% { 
    opacity: 1;
    transform: scale(1);
  }
  50% { 
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes floatParticles {
  0%, 100% { 
    transform: translateY(0) translateX(0);
    opacity: 0.6;
  }
  50% { 
    transform: translateY(-20px) translateX(10px);
    opacity: 1;
  }
}

#wrap {
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Ultra-Premium Header */
header .top_header {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 58, 0.95) 100%);
  backdrop-filter: blur(30px) saturate(180%);
  box-shadow: 
    0 4px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 119, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .top_header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 119, 0, 0.6) 20%, 
    rgba(255, 114, 0, 0.6) 50%,
    rgba(255, 110, 0, 0.6) 80%, 
    transparent);
  animation: shimmerLine 4s ease-in-out infinite;
}

@keyframes shimmerLine {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

header .top_header #wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .top_header #wrap .home_btn {
  position: absolute;
  left: 20px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(255, 119, 0, 0.15), rgba(255, 114, 0, 0.15));
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

header .top_header #wrap .home_btn:hover {
  background: linear-gradient(135deg, rgba(255, 119, 0, 0.3), rgba(255, 114, 0, 0.3));
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 8px 25px rgba(255, 119, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 119, 0, 0.3);
}

header .top_header #wrap .home_btn i {
  font-size: 22px;
  color: #ffffff;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

header .top_header #wrap .home_btn:hover i {
  transform: scale(1.2) rotate(-10deg);
}

@media (max-width: 700px) {
  header .top_header #wrap .home_btn {
    left: 15px;
    width: 48px;
    height: 48px;
  }
}

header .top_header #wrap .logo {
  width: 220px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.15));
}

header .top_header #wrap .logo:hover {
  transform: scale(1.05) translateY(-2px);
  filter: drop-shadow(0 8px 30px rgba(255, 119, 0, 0.5));
}

header .top_header #wrap .logo img {
  width: 100%;
  filter: brightness(0) invert(1);
}

/* Ultra-Premium Login Container */
#member_wrap {
  width: 100%;
  max-width: 500px;
  padding: 50px 20px 50px 20px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
  animation: fadeInScale 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1200px) {
  #member_wrap {
    width: 95%;
  }
}

/* Luxury Title Design */
#member_wrap .title {
  margin-bottom: 40px;
  animation: fadeInDown 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
  position: relative;
}

@keyframes fadeInDown {
  from { 
    opacity: 0; 
    transform: translateY(-30px);
  }
  to { 
    opacity: 1; 
    transform: translateY(0);
  }
}

#member_wrap .title h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: 2px;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, #a8b8ff 50%, #8c9eff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 60px rgba(255, 119, 0, 0.3);
  filter: drop-shadow(0 4px 20px rgba(255, 119, 0, 0.3));
  position: relative;
  display: inline-block;
}

#member_wrap .title h1::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #CC5B00;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(20px);
  opacity: 0.5;
}

#member_wrap .title h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg,#FF7700, #FF7200, #a855f7);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(255, 119, 0, 0.6);
  animation: expandGlow 1.2s ease-out 0.5s both;
}

@keyframes expandGlow {
  from { 
    width: 0;
    opacity: 0;
  }
  to { 
    width: 60px;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  #member_wrap .title h1 {
    font-size: 38px;
  }
}

@media (max-width: 480px) {
  #member_wrap .title h1 {
    font-size: 32px;
  }
}

/* Ultra-Premium Luxury Card */
#member_wrap .content {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.08) 0%, 
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(40px) saturate(180%);
  border-radius: 28px;
  padding: 50px 45px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: cardFloat 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
  position: relative;
  overflow: hidden;
}

#member_wrap .content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 119, 0, 0.08) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes cardFloat {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* Premium Input Fields */
#member_wrap .content .input_box {
  text-align: left;
  margin-bottom: 26px;
  position: relative;
  animation: slideInInput 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

#member_wrap .content .input_box:nth-child(1) {
  animation-delay: 0.5s;
}

#member_wrap .content .input_box:nth-child(2) {
  animation-delay: 0.6s;
}

@keyframes slideInInput {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#member_wrap .content .input_box label {
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 12px;
}

#member_wrap .content .input_box input {
  display: block;
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(20px);
  color: #ffffff;
  font-size: 15px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-sizing: border-box;
  font-weight: 500;
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.1),
    0 0 0 0 rgba(255, 119, 0, 0);
}

#member_wrap .content .input_box input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

#member_wrap .content .input_box input:focus {
  outline: none;
  border-color: rgba(255, 119, 0, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
  box-shadow: 
    0 0 0 4px rgba(255, 119, 0, 0.15),
    0 8px 25px rgba(255, 119, 0, 0.2),
    inset 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px) scale(1.01);
}

#member_wrap .content .input_box input:hover {
  border-color: rgba(255, 114, 0, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.04) 100%);
}

/* Member Classify */
#member_wrap .content .member_classify {
  text-align: left;
  margin-top: -10px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

#member_wrap .content .member_classify input {
  margin-right: 8px;
}

#member_wrap .content .member_classify label {
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.85);
}

#member_wrap .content .member_classify .bubble {
  background: #CC5B00;
  color: #fff;
  border-radius: 14px;
  padding: 12px 20px;
  width: 100%;
  position: relative;
  margin-top: 14px;
  font-size: 13px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(255, 119, 0, 0.3);
}

#member_wrap .content .member_classify .bubble::before {
  bottom: 100%;
  left: 20px;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  border-color: transparent;
  border-bottom-color:#FF7700;
  border-width: 8px;
}

/* Premium Flex Box */
#member_wrap .content .flex_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  animation: fadeIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

#member_wrap .content .flex_box > div {
  display: flex;
  align-items: center;
}

#member_wrap .content .flex_box input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color:#FF7700;
}

#member_wrap .content .flex_box label {
  margin-left: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

#member_wrap .content .flex_box label:hover {
  color: rgba(255, 255, 255, 1);
}

#member_wrap .content .flex_box a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  padding-bottom: 2px;
}

#member_wrap .content .flex_box a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg,#FF7700, #FF7200);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 119, 0, 0.5);
}

#member_wrap .content .flex_box a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

#member_wrap .content .flex_box a:hover::after {
  width: 100%;
}

#member_wrap .content .flex_box .bar {
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* Premium LMS Login Button */
.btn_black {
  width: 100%;
  padding: 16px 0;
  color: #fff;
  background: #CC5B00;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(255, 119, 0, 0.35);
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
  text-transform: uppercase;
  font-family: inherit;
}

.btn_black::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn_black:hover::before {
  left: 100%;
}

.btn_black:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 119, 0, 0.45);
  background: linear-gradient(135deg, #FF7700 0%, #FF7200 100%);
}

.btn_black:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 119, 0, 0.35);
}

.btn_white {
  width: 100%;
  padding: 16px 0;
  color:#FF7700;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255, 119, 0, 0.5);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn_white::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #CC5B00;
  transition: width 0.4s ease;
  z-index: -1;
}

.btn_white:hover {
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 119, 0, 0.3);
}

.btn_white:hover::before {
  width: 100%;
}

.mt50 {
  margin-top: 28px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt15 {
  margin-top: 15px !important;
}

/* Hide footer on login page */
body:has(#member_wrap) footer {
  display: none !important;
}

/* Find Pages Premium Styling */
#member_wrap .title span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}

#member_wrap .content .top_txt {
  text-align: left;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  padding: 20px 25px;
  background: linear-gradient(135deg, rgba(255, 119, 0, 0.08), rgba(255, 114, 0, 0.08));
  border-radius: 12px;
  margin-bottom: 30px;
  font-size: 14px;
}

#member_wrap .content .top_txt b {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

#member_wrap .content table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
}

#member_wrap .content table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#member_wrap .content table th {
  text-align: left;
  padding: 18px 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  width: 135px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent);
}

#member_wrap .content table td {
  padding: 15px;
}

#member_wrap .content table input[type="text"],
#member_wrap .content table input[type="email"] {
  width: 100%;
  padding: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 15px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

#member_wrap .content table input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

#member_wrap .content table input:focus {
  outline: none;
  border-color:#FF7700;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
  box-shadow: 0 0 0 3px rgba(255, 119, 0, 0.15);
  transform: translateY(-2px);
}

#member_wrap .content table input:hover {
  border-color: rgba(255, 114, 0, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
}

#member_wrap .content .phonenumber_input {
  display: flex;
  gap: 10px;
  align-items: center;
}

#member_wrap .content .phonenumber_input input {
  flex: 1 !important;
  width: auto !important;
}

#member_wrap .content .sa_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

#member_wrap .content .sa_box a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

#member_wrap .content .sa_box a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg,#FF7700, #FF7200);
  transition: width 0.3s ease;
}

#member_wrap .content .sa_box a:hover {
  color: #ffffff;
}

#member_wrap .content .sa_box a:hover::after {
  width: 100%;
}

#member_wrap .content .sa_box .bar {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.3);
}

/* Modal Popup Premium Styling */
.modal-bg {
  background: rgba(10, 14, 39, 0.95) !important;
  backdrop-filter: blur(10px);
}

.modal-wrap {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08)) !important;
  backdrop-filter: blur(30px) !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  color: #ffffff;
  padding: 40px;
}

.close-btn i {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.close-btn:hover i {
  color: #ffffff;
  transform: rotate(90deg);
}

/* Premium Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(10, 14, 39, 0.5);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: #CC5B00;
  border-radius: 6px;
  border: 2px solid rgba(10, 14, 39, 0.5);
  box-shadow: 0 0 10px rgba(255, 119, 0, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #FF7700 0%, #FF7200 100%);
  box-shadow: 0 0 15px rgba(255, 119, 0, 0.8);
}

/* Loading Enhancement */
#Roading {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(30px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  #member_wrap {
    padding: 40px 15px 40px 15px;
  }
  
  #member_wrap .title {
    margin-bottom: 32px;
  }
  
  #member_wrap .content {
    padding: 38px 28px;
  }
  
  #member_wrap .content .input_box {
    margin-bottom: 22px;
  }
  
  #member_wrap .content .input_box input {
    padding: 14px 18px;
  }
  
  .btn_black, .btn_white {
    padding: 15px 0;
    font-size: 15px;
  }
  
  #member_wrap .content .flex_box {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  header .top_header #wrap {
    height: 70px;
  }
  
  #member_wrap {
    padding: 35px 15px 35px 15px;
  }
  
  #member_wrap .content {
    padding: 32px 22px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/*# sourceMappingURL=member.css.map */
