

/* Start:/products/online/hash-sha256/style.css?17772079064102*/
.hash256-page {
  color: #fff;
}

.hash256-page h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
}

.hash256-page .generator-section {
  margin: 40px 0;
}

.hash256-page .input-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
  align-items: center;
}

.hash256-page .text-input {
  width: 100%;
  max-width: 700px;
  padding: 24px 24px 50px;
  background: #17191c4d;
  border: 1px solid #3e3e3e;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  color: #fff;
}

.hash256-page .text-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.hash256-page .generate-btn {
  width: auto;
  max-width: 700px;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent) 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1.1;
  white-space: nowrap;
}

.hash256-page .generate-btn .generate-icon {
  flex: 0 0 auto;
  display: block;
}

.hash256-page .generate-btn .generate-text {
  display: inline-block;
}

.hash256-page .generate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 162, 230, 0.28);
}

.hash256-page .generate-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.hash256-page .loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--accent);
  border-radius: 50%;
  animation: hash256-spin 1s linear infinite;
}

@keyframes hash256-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hash256-page .instructions {
  text-align: center;
  margin: 90px 0;
}

.hash256-page h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 2rem;
}

.hash256-page .instructions p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.hash256-page .result-section {
  color: #fff;
  padding: 0;
  margin-top: 20px;
  display: none;
}

.hash256-page .result-section.active {
  display: block;
  animation: hash256-fadeIn 0.5s ease;
}

@keyframes hash256-fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hash256-page .hash-display {
  background: #17191c4d;
  border: none;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 22px 18px;
  margin-bottom: 20px;
  font-family: "Courier New", monospace;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  overflow-x: auto;
}

.hash256-page .result-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.hash256-page .action-btn {
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hash256-page .icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.hash256-page .btn-icon {
  display: block;
}

.hash256-page .copy-btn {
  background: #ffffff33;
  color: #fff;
}

.hash256-page .download-btn {
  background: var(--accent);
  color: #fff;
}

.hash256-page .action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hash256-page .copy-btn.is-success {
  background: #2E7D32;
}

.hash256-page .error-message {
  color: #dc3545;
  text-align: center;
  padding: 10px;
  margin-top: 10px;
  background: rgba(220, 53, 69, 0.1);
  border-radius: 5px;
  display: none;
}

@media (max-width: 768px) {
  .hash256-page h1 {
    font-size: 2.5rem;
  }

  .hash256-page .generate-btn {
    width: 100%;
  }
}


/* End */
/* /products/online/hash-sha256/style.css?17772079064102 */
