#computers, #devices {
	text-align: left;
	margin: 10px;
}

#computers input[type=button], #devices input[type=button] {
	padding: 0px 10px 0px 10px;
	margin: 0 5px 0 5px;
	height: 20px;

	font-size: 10px;
}

.computer, .device {
	margin: 20px 0;
	padding: 10px;
	border-top: dotted 1px gray;
}     

.computer h3, .device h3 {
	padding: 0;
	margin: 0 0 10px 0;
}   

.computer #info, .device #info {
	float: left;
}	

.computer #button, .device #button {
	float: right;
}

.verification-code {
	display: flex;
	justify-content: space-between;
	width: 300px; /* Adjust this to your needs */
	margin: 20px auto;
}

.code-input {
	width: 40px;
	max-width: 40px;
	height: 80px;
	max-height: 80px;
	font-size: 24px;
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 5px;
	outline: none;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	box-sizing: border-box; /* Ensures padding and border are included in the width and height */
	padding: 0; /* Removes any default padding */
}

.code-input:focus {
	border-color: #007BFF;
	box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
}

.spinner {
	width: 40px;
	height: 40px;
	border: 4px solid rgba(0, 0, 0, 0.1);
	border-top-color: #007BFF;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	display: none; /* Hidden by default */
	margin: 20px auto;
}

.sc-message {
	margin: 0 0 20px;
	padding: 12px 14px;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.4;
}

.sc-message-error {
	background: #fff2f2;
	color: #b00020;
	border: 1px solid #f0c2c2;
}

.sc-message {
	margin: 20px;
	padding: 12px 14px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
}

.sc-message-error {
	background: #fff2f2;
	color: #b00020;
	border: 1px solid #f0c2c2;
}

.sc-message-success {
	background: #f0fff4;
	color: #167c3a;
	border: 1px solid #b8e6c6;
}

.sc-signin-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 70%;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 12px 16px;
	border: 1px solid #d0d0d0;
	border-radius: 8px;
	background: #fff;
	color: #1d1d1f;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
}

.sc-signin-button:hover {
	background: #f5f5f7;
	text-decoration: none;
}

.sc-signin-button img {
	height: 20px;
	display: block;
}

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