@charset "utf-8";
/* CSS Document */
html,
body {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 100vh;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: #000;
	color: #fff;
}
h2 {
	margin: 0 auto;
	text-align: center;
}
table {
	background: #b3b3b3;
	color: #000000;
	border-collapse: collapse;
}
form {
	min-width: 500px;
	width: 25%;
	margin: 0 auto;
	line-height: 2em;
}
label {
	display: block;
	float: left;
	text-align: right;
}
input[type="text"]{
	display: block;
	float: right;
}
input[type="password"]{
	display: block;
	float: right;
}
input[type="email"]{
	display: block;
	float: right;
}
input[type="number"]{
	display: block;
	float: right;
}
input[type="date"]{
	display: block;
	float: right;
}
input[type="file"]{
	display: block;
	float: right;
}
select {
	display: block;
	float: right;
}
textarea {
	display: block;
	float: right;
}
.odd {
	background-color: #C0C0C0;
}
.data {
	display: block;
	float: right;
}
.error {
	color: #FF0000;
	font-weight:bold;
	float: left;
}
.error_right {
	color: #FF0000;
	font-weight:bold;
}
.grid-container {
	display: grid;
	grid-template-columns: auto auto auto;
	align-items: center;
	align-content: center;
	margin: 0 auto;
	text-align: center;
}
.grid-inner-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 100px;
	padding: 20px;
	white-space: nowrap;
}
.grid-logo {
	grid-column: auto / span 3;
	margin: 0 auto;
	width: 100%;
	text-align: center;
	background: #b3b3b3;
	color: #000000;
}
.grid-one-section {
	text-align: left;
	background: #b3b3b3;
	color: #000000;
}
.grid-two-section {
	grid-column: auto / span 2;
	text-align: right;
	background: #b3b3b3;
	color: #000000;
}
.horizontal-band {
	display: block;
	margin: 0 auto;
	width: 100%;
	text-align: center;
	background: #b3b3b3;
	color: #000000;
}
.center_only {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	display: block;
	max-width: 1000px;
}
.centered {
	margin-left: auto;
	margin-right: auto;
	display: block;
	max-width: 600px;
	font-size: 16px;
	color: #000000;
	text-align: center;
	background: #b3b3b3;
  	border: 5px solid gray;
 	padding: 10px;
	border-radius: 10px;
}
.centerblock {
	margin-left: auto;
	margin-right: auto;
	display: block;
	max-width: 800px;
	font-size: 16px;
	text-align: center;
}
.logo {
	margin-left: auto;
	margin-right: auto;
	display: block;
	max-width: 300px;
	font-size: 16px;
	color: white;
	text-align: center;
	background: #b3b3b3;
  	border: 5px solid gray;
 	padding: 10px;
	border-radius: 10px;
}
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  color: white;
  text-align: center;
}
.button-container {
	padding: 10px;
	max-width: 220px;
	display: inline-block;
}
.glow-on-hover {
	display: block;
	text-align: center;
	margin: 0 auto;
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 16px;
	font-weight: 700;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}
.glow-on-hover-round {
	display: inline-block;
	text-align: center;
	margin: 0 auto;
    width: 100px;
    height: 100px;
    border: none;
    outline: none;
    color: #fff;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 16px;
	font-weight: 700;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 50%;
}

.glow-on-hover-round:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 50%;
}

.glow-on-hover-round:active {
    color: #000
}

.glow-on-hover-round:active:after {
    background: transparent;
}

.glow-on-hover-round:hover:before {
    opacity: 1;
}

.glow-on-hover-round:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 50%;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}
