html,
body {
	height: 100%;
}

.form-signin {
	max-width: 330px;
	padding: 1rem;
}

.form-signin form {
	display: flex;
	flex-direction: column;
}

.form-signin .form-floating:focus-within {
	z-index: 2;
}

.form-signin input[type="email"] {
	margin-bottom: -1px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
	margin-bottom: 10px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

/* From Uiverse.io by Smit-Prajapati */
.my-container {
	max-width: 350px;
	background: #f8f9fd;
	background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(244, 247, 251) 100%);
	border-radius: 40px;
	padding: 25px 35px;
	border: 5px solid rgb(255, 255, 255);
	box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 30px 30px -20px;
	margin: 20px;
}

.my-container .heading {
	text-align: center;
	font-weight: 900;
	font-size: 30px;
	color: rgb(16, 137, 211);
}

.my-container .form {
	margin-top: 20px;
}

.my-container .form .input {
	width: 100%;
	background: white;
	border: none;
	padding: 15px 20px;
	border-radius: 20px;
	margin-top: 15px;
	box-shadow: #cff0ff 0px 10px 10px -5px;
	border: 2px solid transparent;
	transition: all 0.3s;
}

.my-container .form .input::-moz-placeholder {
	color: rgb(170, 170, 170);
}

.my-container .form .input::placeholder {
	color: rgb(170, 170, 170);
}

.my-container .form .input:focus {
	outline: none;
	border: 2px solid #12b1d1;
}

.my-container .form .forgot-password {
	display: block;
	margin-top: 10px;
	margin-left: 10px;
}

.my-container .form .forgot-password a {
	font-size: 11px;
	color: #0099ff;
	text-decoration: none;
}

.my-container .form .login-button {
	display: block;
	width: 100%;
	font-weight: bold;
	background: linear-gradient(45deg, rgb(16, 137, 211) 0%, rgb(18, 177, 209) 100%);
	color: white;
	padding-block: 15px;
	margin: 20px auto;
	border-radius: 20px;
	box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 20px 10px -15px;
	border: none;
	transition: all 0.2s ease-in-out;
}

.my-container .form .login-button:hover {
	transform: scale(1.03);
	box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 23px 10px -20px;
}

.my-container .form .login-button:active {
	transform: scale(0.95);
	box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 15px 10px -10px;
}

.my-container .agreement {
	display: block;
	text-align: center;
	margin-top: 15px;
}

.my-container .agreement a {
	text-decoration: none;
	color: #0099ff;
	font-size: 9px;
}