*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: sans-serif;
}
body
{
/*	background-color: #01010129;*/
	background-color: black;
}
.rotate 
{
    display: inline-block;
    animation: spin 16s linear infinite;
}

@keyframes spin 
{
   from 
   {
      transform: rotate(0deg);
   }
   to 
   {
      transform: rotate(360deg);
   }
}
.row
{
	height: 100vh;
}
.col-md-6
{
	margin: auto;
	text-align: center;
}
.card
{
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	width: 25rem;
}
.card-header 
{
	background-color: #0a3359;
	color: white;
	font-size: 1em;
	font-weight: 600;
	margin: -1px;
}
.input-group-text
{
	background: transparent;
	border-left: none;
}
input[type="password"]
{
	border-right: none;
}

