/*
 Theme Name: Storefront Child
 Template: storefront
 Version: 1.0
*/

.sf-account-wrapper {
  max-width: 420px;
  margin: 70px auto;
  padding: 30px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.sf-tabs {
  display: flex;
  margin-bottom: 25px;
}

.sf-tab {
  flex: 1;
  padding: 12px;
  border: none;
  background: #f2f2f2;
  cursor: pointer;
  font-weight: 600;
}

.sf-tab.active {
  background: #0a8f8f;
  color: #fff;
}

.sf-tab-content {
  display: block;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: all 0.35s ease;
}

.sf-tab-content.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sf-account-wrapper .woocommerce-form input.input-text,
.sf-account-wrapper .woocommerce-form input[type="text"],
.sf-account-wrapper .woocommerce-form input[type="email"],
.sf-account-wrapper .woocommerce-form input[type="password"] {
  height: 45px;
  padding-left: 42px;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-position: 14px center;
  background-size: 16px;
}

.sf-account-wrapper input[name="username"],
.sf-account-wrapper input[name="email"] {
  background-image: url("data:image/svg+xml,%3Csvg fill='%23999' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M224 256A128 128 0 1 0 224 0a128 128 0 0 0 0 256zm89.6 32h-11.4a174.6 174.6 0 0 1-156.4 0h-11.4A134.4 134.4 0 0 0 0 422.4V464a48 48 0 0 0 48 48h352a48 48 0 0 0 48-48v-41.6A134.4 134.4 0 0 0 313.6 288z'/%3E%3C/svg%3E");
}

.sf-account-wrapper input[type="password"] {
  background-image: url("data:image/svg+xml,%3Csvg fill='%23999' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M400 192h-24v-72C376 53.7 322.3 0 256 0S136 53.7 136 120v72H112c-26.5 0-48 21.5-48 48v224c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V240c0-26.5-21.5-48-48-48zM176 120c0-44.1 35.9-80 80-80s80 35.9 80 80v72H176v-72z'/%3E%3C/svg%3E");
}

.sf-account-wrapper .woocommerce button.button {
  width: 100%;
  height: 45px;
  background: #000;
  border-radius: 6px;
}

@media (max-width: 600px) {
  .sf-account-wrapper {
    margin: 30px 15px;
    padding: 20px;
  }
}
