html, body {
	font-family: helvetica, arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
	padding: 0;
}



.container {
	margin: 0 auto;
	max-width: 768px;
	padding: 20px 5%;
	
}

.form-group {
	display: flex;
	align-items: center;
	padding-top: 3em;
	padding-bottom: 3em;
}

button {
	border: 1px solid #cccccc; 
	font-size: 16px;
	padding: 10px;
	border-radius: 5px;
	display: flex;
	gap: 0.5rem;
	position: relative;
}

button::after {
	padding: 1rem;
	content: "copied!";
	background-color: #333333;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1rem;
	position: absolute;
	bottom: calc(100% + 1.5rem);
	left: 50%;
	color: white;
	transform: translateX(-50%);
	border-radius: 15px;
	display: none;
}

button::before {
	content: "";
	width: 1.5rem;
	height: 1.5rem;
	background-color: #333333;
	transform: translateX(-50%) rotate(45deg);
	position: absolute;
	bottom: calc(100% + 0.8rem);
	left: 50%;
	display: none;
}

button.alert::after, button.alert::before {
	display: block;
}

.lb-input {
	padding: 10px 15px 10px 35px; 
	border: 1px solid #cccccc; 
	border-radius: 5px; 
	font-size: 16px; 
	color: #333333;
	background-color: #ffffff; 
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	outline: none; 
	width: 100%;
	background-repeat: no-repeat;
	background-size: 30px 30px;
	background-position: 3px 3px;
  }

  .lb-input:focus {
	border-color: #666666; 
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); 
  }

#apple {
	background-image: url(./apple.svg);
}

#windows {
	background-image: url(./windows.svg);
}


