/* ================================
   Body override
================================ */
body {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

/* ================================
   Container override
================================ */
.container-login {
	background: white;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	max-width: 450px;
	width: 100%;
}

/* ================================
   Logo
================================ */
.logo {
	text-align: center;
	margin-bottom: 30px;
}

.logo-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background: rgba(200, 230, 230);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 10px 10px rgba(102, 126, 234, 0.3);
}

.logo-icon svg {
	width: 50px;
	height: 50px;
	fill: white;
}

/* ================================
   Headings
================================ */
h1 {
	color: rgb(0, 128, 255);
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 10px;
	text-align: center;
}

h2 {
	color: #4a5568;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 30px;
	text-align: center;
}


/* ================================
   Button
================================ */
.btn-login {
	width: 100%;
	padding: 12px 28px;
	border: none;
	background: #4197cb;
	color: white;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 6px 20px rgba(65, 151, 203, 0.4);
}