@charset "utf-8";

/* General Styles */
*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}

body{
	font:12px/14px Arial, Helvetica, sans-serif;
	color:#000;
	background:#ffd6e7;
	background-image:none;
	text-align:center;

	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	min-height:100vh;
}

img{
	border:0;
}

a,
a:focus{
	outline:none;
	text-decoration:none;
}

ul{
	list-style:none;
}

.clear{
	clear:both;
	font-size:0;
	line-height:0;
	height:0;
}

input,
textarea,
select{
	font:normal 12px/14px Arial, Helvetica, sans-serif;
	outline:none;
}

/* Headings */

h1{
	font-size:28px;
	line-height:30px;
	font-weight:normal;
	color:#000;
	margin-bottom:20px;
}

h2{
	font-size:20px;
	line-height:24px;
	font-weight:normal;
	color:#000;
	margin:0;
	padding-bottom:15px;
}

h3{
	font-size:12px;
	line-height:16px;
	color:#000;
	padding-bottom:3px;
}


/* Header */

#header{
	height:auto;
	text-align:center;
	margin-bottom:5px;
}

#header .logo{
	padding-top:10px;
	padding-bottom:10px;
}


/* Main Page */

#page{
	height:auto;
	text-align:center;
	margin-top:0;
}

#page .content{
	width:100%;
}


/* Login Panel */

#page .content .panel{
	height:215px;
	width:490px;
	margin:15px auto;

	background:#fff0f7;
	border-radius:10px;
	box-shadow:0 3px 10px rgba(0,0,0,.15);

	position:relative;
}


/* User Label */

.panel .user{
	display:block;
	height:24px;
	width:113px;

	text-align:left;
	position:absolute;

	left:45px;
	top:38px;

	font-size:20px;
	line-height:24px;
	color:#000;
}

.panel .user-panel{
	display:block;
	height:40px;
	width:275px;

	position:absolute;
	left:163px;
	top:33px;
}


/* Password Label */

.panel .pass{
	display:block;
	height:24px;
	width:113px;

	text-align:left;
	position:absolute;

	left:45px;
	top:91px;

	font-size:20px;
	line-height:24px;
	color:#000;
}

.panel .pass-panel{
	display:block;
	height:40px;
	width:275px;

	position:absolute;
	left:163px;
	top:85px;
}


/* Input Fields */

.panel .searchField{
	width:270px;
	height:34px;

	font-size:18px;
	border:none;

	background:#fff;
	border-radius:6px;

	padding-left:10px;
	padding-right:10px;
}


/* Button */

.panel .button{
	display:block;
	height:64px;
	width:144px;

	position:absolute;
	left:288px;
	top:132px;
}

.panel .button2{
	width:144px;
	height:50px;

	border:none;
	border-radius:8px;

	cursor:pointer;

	font-size:18px;
	color:#fff;

	background:#d63384;
}

.panel .button2:hover{
	background:#c2185b;
}


/* Remove Arrow */

.panel .arrow{
	display:none;
}


/* Description Text */

#page .content p{
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:20px;
	font-weight:bold;

	color:#000;

	padding-top:15px;
	width:auto;

	margin:0 auto;
	text-align:center;
}

#page .content p a{
	color:#0056cc;
}

#page .content p a:hover{
	color:#003399;
}


/* Footer */

#footer{
	height:auto;
	padding-top:10px;
	margin-top:5px;
}

#footer p{
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	color:#000;
	margin:0;
	padding:0;
	font-weight: bold;
}

#footer p a{
	color:#000;
}

#footer p a:hover{
	color:#444;
}
.error_msg{
    color:#d32f2f;
    background:#ffe6e6;
    border:1px solid #ffb3b3;
    padding:10px 15px;
    margin:10px auto;
    width:fit-content;
    border-radius:6px;
    font-size:14px;
    font-weight:bold;
    text-align:center;
}