/* #222 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
		Ubuntu, Cantarell, sans-serif;
	background: linear-gradient(135deg, #1f3126 0%, #161616 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
  color: white;
}

.container {
	background-color: #53c3a3;
  background: linear-gradient(135deg, #3f5c54 0%, #2b3e39 90%, #1f7040 100%);
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	padding: 40px;
	max-width: 500px;
	width: 100%;
  margin-inline: auto;
}

h1 {
	color: white;
	margin-bottom: 24px;
	font-size: 28px;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.input-group {
	margin-bottom: 20px;
}

input[type="text"] {
	width: 100%;
	padding: 14px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 16px;
	transition: border-color 0.3s;
}

input[type="text"]:focus {
	outline: none;
	border-color: #667eea;
}

button {
	width: 100%;
	padding: 14px;
  background-color: #26ba61;
	background: linear-gradient(135deg, #53c3a3 0%, #26ba61 100%);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s, box-shadow, color 0.2s;
  box-shadow: 0 5px 4px rgba(23, 105, 45, 0.4);
}

/* button:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(102, 234, 137, 0.4);
} */
button:hover:not(:disabled) {
	transform: translateY(1px);
	box-shadow: 0 2px 2px rgba(23, 105, 45, 0.4);
}
button:active:not(:disabled) {
	transform: translateY(2px);
	box-shadow: 0 0px 0px rgba(23, 105, 45, 0.4);
  color: #91c5a6;
}

button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.status {
	margin-top: 20px;
  margin-inline: auto;
	padding: 16px;
	border-radius: 8px;
	font-size: 14px;
	visibility: hidden;
}

.status.info {
	background: #e3f2fd;
	color: #1976d2;
	border-left: 4px solid #1976d2;
  visibility: visible;
}

.status.success {
	background: #e8f5e9;
	color: #388e3c;
	border-left: 4px solid #388e3c;
  visibility: visible;
}

.status.error {
	background: #ffebee;
	color: #d32f2f;
	border-left: 4px solid #d32f2f;
  visibility: visible;
}

.spinner {
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: white;
	animation: spin 1s ease-in-out infinite;
	margin-right: 8px;
	vertical-align: middle;
}

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

.flex-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}