.download-container {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	margin: 50px 20px;
}
.downloader-bg {
	background: linear-gradient(135deg, #eef2f3, #d9e4ec);
}
.download-box {
	width: 80%;
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	padding: 16px 20px;
	border-radius: 8px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.download-input {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid #d1d5db;
	border-radius: 4px;
	font-size: 15px;
	transition: all 0.3s ease;
}
.download-input:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}
.download-btn {
	padding: 11px 24px;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	color: #fff;
	height: 37px;
	font-size: 15px;
	font-weight: 500;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}
.download-btn:hover {
	background: linear-gradient(135deg, #1d4ed8, #1e40af);
	transform: translateY(-2px);
	box-shadow: 0 6px 14px rgba(29, 78, 216, 0.4);
}
.download-btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(29, 78, 216, 0.3);
}

/* Login/Register Page */
/* General Layout */
.login-page,
.register-page {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: #fff;
	font-family: Arial, sans-serif;
	color: #222;
}

.form-container {
	max-width: 400px;
	width: 100%;
	padding: 30px;
	text-align: center;
}

/* Logo */
.form-logo img {
	max-width: 100px;
	margin-bottom: 20px;
}

/* Titles */
.form-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 25px;
}

/* Form Fields */
.form-row {
	margin-bottom: 20px;
	text-align: left;
}

.form-row label {
	display: flex;
	/* justify-content: space-between; */
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 6px;
}

.form-row .required {
	color: red;
	margin-left: 3px;
}
.password-lost {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

/* Inputs */
.form-row input[type='text'],
.form-row input[type='email'],
.form-row input[type='password'] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s;
}

.form-row input:focus {
	border-color: #ff4d4d;
}

.show-hide-pass {
  position: absolute;
  right: 10px;
  top: 67%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.show-hide-pass:hover {
  opacity: 1;
}

/* Remember Me */
.form-row input[type='checkbox'] {
	margin-right: 5px;
}

/* Links */
.lost_password,
.switch-form a {
	font-size: 13px;
	color: #c00;
	text-decoration: none;
}

.lost_password:hover,
.switch-form a:hover {
	text-decoration: underline;
}
.woocommerce-privacy-policy-text {
	margin: 15px 0;
	font-size: 13px;
}
.woocommerce-privacy-policy-text p a {
	color: #c00;
	text-decoration: underline;
}

/* Submit Button */
.woocommerce-button {
	width: 100%;
	background: #c00;
	color: #fff;
	font-weight: 600;
	padding: 14px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	letter-spacing: 1px;
	transition: background 0.2s;
}
.woocommerce-button:hover {
	background: #a00;
}
/* Switch text */
.switch-form {
	margin-top: 15px;
	font-size: 14px;
}



/* Downloader Table */
/* Wrapper */
.downloader-wrapper {
  width: 80%;
  position: relative;
  overflow-x: auto;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-radius: .5rem;
  margin: 20px 
}
/* Search box container */
.downloader-search-container {
  padding-bottom: 1rem;
  background-color: #fff;
}
.downloader-search-container.dark {
  background-color: #111827;
}
/* sr-only */
.downloader-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
/* Table */
.downloader-table {
  width: 100%;
  text-align: left;
  font-size: .875rem;
  color: #6b7280;
}
.downloader-thead {
  font-size: .75rem;
  text-transform: uppercase;
  color: #374151;
  background-color: #f9fafb;
}
.downloader-th {
    font-size: 14px;
  padding: .75rem 1.5rem;
}
.downloader-th-checkbox {
  padding: 1rem;
}
.downloader-tr {
    font-size: 14px;
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.downloader-tr:hover {
  background-color: #f9fafb;
}
.downloader-td,
.downloader-td-title {
  padding: 1rem 1.5rem;
}
.downloader-td-title {
  font-weight: 500;
  color: #111827;
  white-space: nowrap;
}
.downloader-td-checkbox {
  width: 1rem;
  padding: 1rem;
}
.downloader-flex-center {
  display: flex;
  align-items: center;
}

/* Checkbox */
.downloader-checkbox {
  width: 1rem;
  height: 1rem;
  color: #2563eb;
  background-color: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: .25rem;
}
.downloader-checkbox:focus {
  outline: none;
  box-shadow: 0 0 0 2px #3b82f6;
}

/* Links */
.downloader-link {
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
}
.downloader-link:hover {
  text-decoration: underline;
}




/* Mobile Styles */
@media (max-width: 768px) {
	.download-container {
	    margin: 50px 0;
	}
	.download-box {
		flex-direction: column;
		width: 90%;
	}
	.download-input,
	.download-btn {
		width: 100%;
	}
	.downloader-wrapper {
	    width: 90%;
	}
}
