/* CSS RESET */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* CSS RESET */


/* STYLE UTAMA */
body {
	background: linear-gradient(to bottom, #0968e5, #091970);
	height: 88vh;
	font-family: 'Quicksand', 'Lucida Console', Arial, Helvetica, sans-serif;
}

/* HEADER */
header {
	padding: 10px 36px;
	height: 100px;
	box-sizing: border-box;
	background: linear-gradient( to right, #000328, #00458e);
	border-radius: 0 0 15px 15px;
	box-shadow: 0 4px 5px #FFA101;
	/* border-bottom: 3px solid #FFA101; */
}


.logo {
	width:190px;
    display: block;
	margin: 0 auto;
	/* margin-left: 30px; */
	/* border: 1px solid white; */
}
/* HEADER */

/* MAIN */
main {
	margin: 72px auto;
	padding: 35px;
	width: 35%;
	height: auto;
	background-color: rgba(255, 255, 255, 0.5); /* putih 50% transparan */
	/* box-shadow: 2px 2px 2px rgba(0,0,0,0.8); */
	border: 1px solid white;
	border-radius: 15px;
	box-sizing: border-box;
	font: 20px consolas, "arial", 'Times New Roman', Times, serif;
}

.login-admin {
	/* background-color: #DAD9D4; */
    font-family: consolas, 'Times New Roman', Times, serif;
	margin: 0 auto;
    /* padding: 15px 30px; */
    /* width: 90%; */
    text-align: center;
    /* border: 1px solid gray; */
    border-radius: 30px 0 30px 0;
    /* box-sizing: border-box; */
}

.login-admin label {
	display: block;
	/* margin-top: 30px; */
	font-family:'Quicksand', Arial, Helvetica, sans-serif;
	font-weight: bold;
}

.login-admin label:first-child {
	margin-top: 20px;
}

.login-admin form {
    /* font-family: consolas, 'Times New Roman', Times, serif; */
    /* margin-top: 30px; */
    text-align: left;
}

.input-admin {
	/* margin: 0 0 15px; */
	width: 100%;
	height: 50px;
	padding: 10px;
	/* box-sizing: border-box; */
	border: 1px solid gray;
	border-radius: 0 10px 10px 10px;
	transition: border 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-bottom 0.1s ease-in-out;
    font-family: 'Quicksand', consolas, 'Times New Roman', Times, serif;
	font-size: large;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.input-admin:hover {
	border-bottom: 3px solid #FFA101;
	box-shadow: 0 0 2px black;
}

.login-admin button {
    display: block;
	margin-top: 30px;
    width: 100%;
    height: 50px;
    /* margin: 0 auto; */
	font: bold 20px 'Quicksand', "lucida console", Arial, Helvetica, sans-serif;
	background-color: #FFA101;
	color: white;
	border: none;
	border-radius: 0 0 	15px 15px;
	padding: 5px 10px;
	transition: background-color 0.3s, color 0.3s, border 0.3s, box-shadow 0.3s;
	cursor: pointer; /*mengubah kursor menjadi pointer saat hover*/
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

.login-admin button:hover {
	background: green;
	color: white;
	border-bottom: 5px solid white;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.8);
}
/* MAIN */

/* MAIN (ENTRANCE) */
.entrance h2 {
	text-align: center;
	background-color: none;
	font-weight: bold;
	font-family: 'Quicksand', Arial, Helvetica, sans-serif;
}

.entrance .siapa a {
	display: block;
	height: 30px;
	text-align: center;
	text-decoration: none;
	background-color: #FFA101;
	margin-top: 30px;
	padding: 10px;
	border-radius: 10px;
	color: white;
	border: 1px solid white;
	font: bold 20px 'Quicksand', Arial, Helvetica, sans-serif;
}

.entrance .siapa .sayaadmin {
	transition: background-color 0.3s, color 0.3s, border 0.3s, box-shadow 0.3s;
}

.entrance .siapa .sayaadmin:hover {
	background-color: green;
	color: white;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.8);
}

.entrance .siapa .sayauser {
	transition: background-color 0.3s, color 0.3s, border 0.3s, box-shadow 0.3s;
}

.entrance .siapa .sayauser:hover {
	background-color: #022E51;
	color: white;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.8);
}
/* MEDIA QUERY */
/* Tablet */
@media (max-width: 768px) {
	body {
		height: 100vh;
		min-height: 100vh;
	}
	
	main {
		width: 80%;
		margin: 40px auto;
		padding: 25px;
		font-size: 18px;
	}
	
	.logo {
		width: 160px;
	}
	
	.input-admin {
		font-size: 16px;
		height: 45px;
	}
	
	.login-admin button {
		font-size: 18px;
		height: 45px;
	}
}

/* Mobile Large */
@media (max-width: 480px) {
	body {
		height: 100vh;
		min-height: 100vh;
	}
	
	main {
		width: 90%;
		margin: 30px auto;
		padding: 20px;
		font-size: 16px;
	}
	
	.logo {
		width: 140px;
	}
	
	.login-admin label {
		font-size: 14px;
		margin-top: 15px;
	}
	
	.login-admin label:first-child {
		margin-top: 15px;
	}
	
	.input-admin {
		width: 100%;
		height: 45px;
		font-size: 16px;
		padding: 8px;
	}
	
	.login-admin button {
		width: 100%;
		height: 45px;
		font-size: 16px;
		margin-top: 25px;
	}
	
	main p {
		font-size: 12px;
		margin-top: 15px;
	}
}

/* Mobile Small */
@media (max-width: 375px) {
	body {
		height: 100vh;
		min-height: 100vh;
	}
	
	main {
		width: 92%;
		margin: 20px auto;
		padding: 18px;
		font-size: 14px;
	}
	
	.logo {
		width: 120px;
	}
	
	.login-admin label {
		font-size: 13px;
		margin-top: 12px;
	}
	
	.login-admin label:first-child {
		margin-top: 12px;
	}
	
	.input-admin {
		width: 100%;
		height: 42px;
		font-size: 14px;
		padding: 8px;
	}
	
	.login-admin button {
		width: 100%;
		height: 42px;
		font-size: 15px;
		margin-top: 20px;
	}
	
	main p {
		font-size: 11px;
		margin-top: 10px;
	}
}

/* Mobile Extra Small */
@media (max-width: 320px) {
	main {
		width: 95%;
		padding: 15px;
	}
	
	.logo {
		width: 100px;
	}
	
	.input-admin {
		height: 40px;
		font-size: 14px;
	}
	
	.login-admin button {
		height: 40px;
		font-size: 14px;
	}
}

/* STYLE UTAMA */

