html [dir="ltr"] #personaltools-studentRegistration {
  font-weight: bold;
  border: 2px solid green;
  padding: 8px;
  border-radius: 8px;
  color: white;
  background-color: green;
}
.spinner {
	display: none;
	border: 4px solid rgba(0, 0, 0, 0.1);
	border-left-color: #22a6b3;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	animation: spin 1s linear infinite;
	margin-top: 10px;
}

@keyframes spin {
	 0% { transform: rotate(0deg); }
     100% { transform: rotate(360deg); }
}
