/** Shopify CDN: Minification failed

Line 40:2 Unexpected "{"
Line 40:3 Expected identifier but found "%"
Line 40:35 Unexpected "{"
Line 40:36 Expected identifier but found "%"
Line 56:0 Unexpected "{"
Line 56:1 Expected identifier but found "%"
Line 63:2 Unexpected "{"
Line 63:3 Expected identifier but found "%"
Line 91:2 Unexpected "{"
Line 91:3 Expected identifier but found "%"
... and 2 more hidden warnings

**/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal.show {
  display: flex;
} 

.modal-content {
  width: 500px;
  background: #fff;
  border-radius: 6px;
  padding: 30px 60px;
  position: relative;
  font-family: Arial, sans-serif;
   overflow-y: auto; 
  {% comment %} max-height: 600px; {% endcomment %}
  height: 500px;
  display: flex;
  flex-direction: column;
}

/* CLOSE */
.close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 18px;
  cursor: pointer;
}

/* LOGO */
{% comment %} .logo {
  text-align: center;
  margin-bottom: 15px;
}

.logo img {
  max-height: 60px;
} {% endcomment %}

.logo {
  display: flex;
  /* flex-direction: column;  */
  flex-direction: column !important; 
  align-items: center;     
  justify-content: center; 
  gap: 6px;               
}

/* main logo */
.logo-icon {
  height: 78px;
  width: auto;
}

/* text logo */
.img-logo-text {
  height: 16px;
  width: auto;
}
.form {
  display: none;
  height: 100%;
  flex-direction: column;
}
.form.active {
  {% comment %} display: block; {% endcomment %}
    display: flex;
}

/* HEADING */
.form h2 {
  text-align: center;
  font-size: 14px;
  margin-bottom: 25px;
  font-weight: 600;
}

/* FORM GROUP */
.form-group {
  margin-bottom: 18px;
  position: relative;
}

/* LABEL */
.form-group label {
  font-size: 13px;
  font-weight: 500;
}

.form-group label span {
  color: red;
}

/* REMEMBER */
.remember {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center; /* vertical center */
  gap: 6px;
  font-size: 12px;
}

/* Checkbox spacing fix */
.remember input[type="checkbox"] {
  margin: 0; /* remove extra top margin */
  cursor: pointer;
}

/* Label clickable */
.remember label {
  cursor: pointer;
  margin: 0;
}

/* PASSWORD ROW */
.password-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.password-row a {
  text-decoration: none;
  font-size: 12px;
  color: #555;
}

/* INPUT */
.form-group input {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #f3f6fb;
  outline: none;
}

/* BUTTON */
.login-btn {
  width: 100%;
  background: #2f8f2f;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 10px;
  cursor: pointer;
}

/* FOOTER TEXT */
.register-text {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
}

.register-text a {
  color: red;
  text-decoration: none;
}
/* PRIVACY TEXT */
.privacy-text {
  font-size: 12px;
  text-align: center;
  color: #555;
  line-height: 1.5;
}
.privacy-text a {
  text-decoration: underline;
  color: #000;
}