* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;

}

body {
	background-color: #e8e8e8;

	background-color: #EAEFF9;
	font-family: Nunito;
}

#topmid {
	color: #9C27B0;
	text-align: center;
	font-size: 25px;
}

a:hover {
	color: rgb(1, 1, 1);
}

a:link {
	color: black;
	text-decoration: none;
}

header nav li:hover {
	text-decoration: underline;
}

.colab-h1 {
	margin-left: 0;
	margin-bottom: 0;
	font-size: 2rem;
	font-weight: 600;
	cursor: default;

}

header nav li {
	display: table;
	height: 80%;
	float: left;
	margin-right: 20px;
	padding-left: 10px;
}

header nav a {
	color: #ffffff;
}

header nav li a.active {
	color: black;
}

.form {
	padding: .7rem 1rem;
	display: flex;
	flex-direction: column;
	margin: auto;
	gap: .8rem;
	max-width: 350px;
	background-color: #fff;

	/* margin-top: 1.2rem; */
	border-radius: 20px;
	position: relative;
}

.title {
	font-size: 1.65rem;
	margin: 1.2rem 0rem;
	color: royalblue;
	font-weight: 600;
	letter-spacing: -1px;
	position: relative;
	display: flex;
	align-items: center;
	padding-left: 30px;
}


.title::before,
.title::after {
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	border-radius: 50%;
	left: 0px;
	background-color: royalblue;
}

.title::before {
	width: 18px;
	height: 18px;
	background-color: royalblue;
}

.title::after {
	width: 18px;
	height: 18px;
	animation: pulse 1s linear infinite;
}

.message,
.signin {
	color: rgba(88, 87, 87, 0.822);
	font-size: 14px;
}

.signin {
	text-align: center;
}

.signin a {
	color: royalblue;
}

.signin a:hover {
	text-decoration: underline royalblue;
}

.flex {
	display: flex;
	width: 100%;
	gap: 6px;
}

.form label {
	position: relative;
}

.form label .input {
	width: 100%;
	padding: 14px 6px 10px 6px;
	outline: 0;
	border: 1px solid rgba(105, 105, 105, 0.397);
	border-radius: 10px;
}

nav>a {
	margin-left: 2rem;

}

nav {
	margin-top: .5rem;
}

.form label .input+span {
	position: absolute;
	left: 10px;
	top: 15px;
	color: grey;
	font-size: 0.9em;
	cursor: text;
	transition: 0.3s ease;
}

.form label .input:placeholder-shown+span {
	top: 15px;
	font-size: 0.9em;
}

.form label .input:focus+span,
.form label .input:valid+span {
	top: -12px;
	font-size: 0.7em;
	font-weight: 600;
}

.form label .input:valid+span {
	color: green;
}

.submit {
	border: none;
	outline: none;
	background-color: royalblue;
	padding: 10px;
	border-radius: 10px;
	color: #fff;
	font-size: 16px;
	transform: .3s ease;
}

.submit:hover {
	background-color: rgb(56, 90, 194);
}

@keyframes pulse {
	from {
		transform: scale(0.9);
		opacity: 1;
	}

	to {
		transform: scale(1.8);
		opacity: 0;
	}
}

.form .button {
	background-color: #0066ff;
	color: #fff;
	border: 0;
	border-radius: 24px;
	padding: 10px 16px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color .3s ease;
}

.form .button:hover {
	background-color: #005ce6;
}

.signup {
	text-align: center;
	font-size: 0.75rem;
	line-height: 1rem;
	color: rgb(0, 0, 0);
}

.forgot a,
.signup a {

	color: royalblue;
	text-decoration: none;
	font-size: 14px;
}

.forgot {
	display: flex;
	justify-content: flex-end;
}

.forgot a:hover,
.signup a:hover {
	text-decoration: underline royalblue;
}

.input {
	margin: 2px auto;
}

.div-cont {
	display: flex;
	justify-self: center;
}

#login-form {
	gap: 1rem;
}

.navbar {
	width: fit-content;
	display: flex;
	align-items: flex-start;
}


@media only screen and (max-width:576px) {
	.navbar {
		margin-bottom: 1rem;


	}


	.form-cont {
		margin: 1rem;
	}
}


#alert-notify {
	max-width: 480px;
	position: absolute;
	width: 100%;
	right: 0;
	top: 1rem;
	z-index: 1023;
}

.btn-close:focus {

	box-shadow: inset 0px 0px 3px #d01e7d !important;
}

.bar {
	display: inline-block;
	width: 20px;
	height: 100px;
	background-color: #1e3f57;
	transform: scaleY(0);
	transform-style: preserve3d;
	animation: bar 3s cubic-bezier(.81, .04, .4, .7) infinite;
}

.bar:nth-child(2) {
	left: 20px;
	background-color: #264a63;
	animation-delay: 50ms;
}

.bar:nth-child(3) {
	left: 40px;
	background-color: #2d566f;
	animation-delay: 100ms;
}

.bar:nth-child(4) {
	left: 60px;
	background-color: #35617a;
	animation-delay: 150ms;
}

.bar:nth-child(5) {
	left: 80px;
	background-color: #3d6d86;
	animation-delay: 200ms;
}

.bar:nth-child(6) {
	left: 100px;
	background-color: #447892;
	animation-delay: 250ms;
}

.bar:nth-child(7) {
	left: 120px;
	background-color: #4c849e;
	animation-delay: 300ms;
}

.bar:nth-child(8) {
	left: 140px;
	background-color: #548fa9;
	animation-delay: 350ms;
}

.bar:nth-child(9) {
	left: 160px;
	background-color: #5c9bb5;
	animation-delay: 400ms;
}

.bar:nth-child(10) {
	left: 180px;
	background-color: #63a6c1;
	animation-delay: 450ms;
}

.loader--reflect .bar {
	animation-name: bar-reflect;
}

@keyframes bar {
	0% {
		transform: rotateZ(-180deg) rotateX(-360deg);
	}

	75%,
	100% {
		transform: rotateZ(0) rotateX(0);
	}
}



.loader-wrapper {
	height: 100vh;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	backdrop-filter: blur(25px);
	background: ghostwhite;
	display: flex;
	justify-content: center;
	align-items: center;
}

body.no-scroll {
	overflow: hidden;
}

.alert-reg-danger {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
}

.alert-reg {
	max-width: 405px;
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid transparent;
	border-radius: .375rem;
	border-radius: 4px;
	position: relative;
	transition: opacity 0.3s ease;
	max-width: 400px;
}

.alert-reg .btn-close {
	position: absolute;

	right: 10px;
	background: transparent;
	border: none;
	font-size: 18px;
	color: #b13d3d;
	font-weight: 700;
	cursor: pointer;
}

.tc-div-0{
	display: flex;
	flex-direction: column;
	background: #C6D5F0 !important;
    margin: 1rem;
	margin: 1rem;
    padding: 1rem .5rem 1.5rem .5rem;
    border-radius: 1rem;
	zoom: .9!important;
}

.tc-div-1 h1 {
	padding: .4rem 0;
    text-align: center;
    font-family: Nunito;
    
}

.tc-div-0 section {
	padding: .2rem .5rem;
    font-size: .9rem;

}

.tc-div-0 h2 {
	padding: .4rem 0;
	font-size: 1.3rem;
}
.tc-div-0 h3{
	padding: .4rem 0;
	display: inline;
	font-size:1rem;
	font-weight: 600;
}
.tc-div-0 p{
	font-family:Ubuntu;
	padding: .2rem 0;
	display: inline;
	color:#215166;
	
}
.tc-div-0 li{
	list-style: none;
	padding: .1rem .4rem;
	color:#215166;
	}