/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}

/*style*/
body {
	font:  16px/28px sans-serif;
	background-color: skyblue;	
	background-image: url("assets/images/layar.jpg'");	
}

.container {
	width: 950px;	
	margin: auto;
	position: relative;
	top: 20px;
	background-color: white;

}


.main{
	width: 460px;
	padding: 20px;
	margin: 10px;
	float: left;
	box-sizing: border-box;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	border-radius: 5px;
}


.main img{
	border-radius: 10px;
	
}


.sidebar {
	width: 400px;
	height: 460px;
	float: right;
	padding: 20px;
	margin: 10px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	
}

	input {
			width: 350px;
			height: 30px;
			border-radius: 5px;
			padding: 5px;
			
		}

		#password, #email, #button1, #button2{
			margin: 10px

		}

		input:hover{
			padding: 5px;
			color: blue;
			font-weight: bold;
			background-color: ghostwhite;
			
		}

		.gambar{			
			padding: 15px;
			position: relative;
			left: 70px;
			border-radius: 20px;
		}
	

		#button1 {
			padding: 15px;
			width: 100px;
			background-color: green;
			border-radius: 10px;
			margin: 10px;
		}

		#button1:hover {
			background-color: red;
		}

		#button2 {
			padding: 15px;
			width: 100px;
			background-color: blue;
			border-radius: 10px;
		
		}

		#button2:hover {
			background-color: yellow;
		}

		table {
			width: 400px;
			margin: auto;
			background-color: #b3f0dc;			
			border-radius: 10px;
		}

		



/*clear float*/
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
    *zoom: 1;
}

