@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2{
    font-family: "Calibri", sans-serif;
	color: #5e5e5e;
	margin: 10px;
}
h3, h4, h5, h6{
	font-size: 16px;
	font-family: "Calibri light", sans-serif;
	color: #5e5e5e;
	margin: 10px;
}
label{
    font-family: "Calibri", sans-serif;
	color: #5e5e5e;
}

/* Center items inside body */

body {
    background-color: #c4d7da;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

/* Style of login-block; Center items inside login-block */

.login-block {
    background-color: #ffff;
    width: 350px;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.login{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Style of Logo */

#div-logo {
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
}
#logo {
	display: inline-block;
	width: 120px;
}
.alert{
	width: 100%;
	height: 42px;
	box-sizing: border-box;
	border-radius: 5px;
	border: 1px solid #f55f78;
	margin-bottom: 20px;
	padding: 5px;
	color: white;
	background-color: #f66e84;
	font-size: 14px;
	font-family: "Poppins", sans-serif;
	/* display: flex; */
	justify-content: center;
	align-items: center;
	display: none;
}

/* Style of login form */

.input-help{
	border: none;
	color: red;
	font-size: 14px;
	font-family: "Poppins", sans-serif;
	display: none;
}
.login-block input[type='text'],
input[type='email'],
input[type='number'],
input[type='password'] {
	border: none;
	font-size: 16px;
	width: 240px;
	height: 36px;
	outline: none; 
}
.m-input-icon{
	width: 100%;
	/* height: 42px; */
	box-sizing: border-box;
	border-radius: 5px;
	border: 1px solid #ccc;
	margin-bottom: 20px;
	padding: 5px;
}

/* Style of Button */

.button-group{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.login-block button {
	width: 100%;
	height: 40px;
	background: #58b371;
	box-sizing: border-box;
	border-radius: 8px;
	border: 1px solid #262626;
	color: #fff;
	font-weight: bold;
	/* text-transform: uppercase; */
	font-size: 18px;
	font-family: "Calibri", sans-serif;
	cursor: pointer;
	outline: none;
	margin-top: 15px;
	margin-bottom: 15px;
	padding: 10px;
}
.forgot-password {
	text-align: right;
	font-size: 16px;
	font-family: "Calibri", sans-serif;
	text-decoration: none;
}
.register {
	text-align: right;
	font-size: 16px;
	font-family: "Calibri", sans-serif;
	text-decoration: none;
}

