@font-face {
    font-family: 'MyFont'; /*a name to be used later*/
    src: url('./Abel.ttf'); /*URL to font*/
}
body{
	background-color:#FFF;
	margin:0px;
	color:#666;
	font-family:'MyFont';
	width:100%;
	overflow-y:scroll;
	overflow-x:hidden;
	height:auto;
    font-size:100%;
	line-height:25px;

}
.tombol{
    padding: 10px 30px;
    font-size:90%;
    background-image:linear-gradient(to bottom,#0f33aa 0%,#1b48dc 100%);
    color:#fff;
    border:0px;
    bottom:10px;
    border-radius:10px;
    text-shadow:1px 1px 1px rgb(0,0,0);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
.tombol:hover{
    background-image:linear-gradient(to top,#0f33aa 0%,#1b48dc 100%);
    color:#ff0;
}

.tombol:disabled {
    background-color: #eee; /* Lighter background color */
    background-image:linear-gradient(to top,#cccccc 0%,#999999 100%);
    color:#ffffff;
    cursor: not-allowed;    /* Change the mouse cursor */
}

.kolom{
    padding: 10px;
    color:#333;
    border:1px solid #999;
    bottom:10px;
    border-radius:10px;
    width:calc(100% - 20px); 
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
.kolom:hover{
    color:#000;
}

.title{
    color:#670b4e;
    margin:0;
    margin-top:35px;
    margin-bottom:5px;
    font-family:"MyFont";
    font-size:100%;
    letter-spacing:3px;
    font-weight:bold;
    text-transform:capitalize;
}

.line-grey{
	background-image:linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(200,200,200,1) 30%,rgba(200,200,200,1) 70%,rgba(255,255,255,1) 100%);
	height:1px;
	width:100%;
	margin-top:20px;
	margin-bottom:20px;
}

h1,h2,h3{
    color:#670b4e;
    margin:0;
    margin-bottom:10px;
    text-align:center;
    letter-spacing:5px;
}
#content{
    position:relative;
    width:500px;
    left:50%;
    top:0%;
    transform:translate(-50%,0%);
    padding:10px;
    border:1px solid #999;
    border-radius:10px;
}
#login{
    position:relative;
    width:500px;
    left:50%;
    transform:translate(-50%,50%);
    padding:10px;
    border:1px solid #999;
    border-radius:10px;
}
#login .kolom{
    text-align:center;
}
#menu{
    position:relative;
    padding:10px 15px;
    border-radius:5px;
    border:1px solid #999;
    text-decoration:none;
    text-transform:uppercase;
    margin:10px;
    color:blue;
    background-color:rgba(255,255,255,1);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
a{
    text-decoration:none;
    color:blue;
}
#menu:hover{
    background-color:rgba(200,200,200,.8);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}

.popup{
    position:fixed;
    top:0px;
    left:0px;
    right:0px;
    bottom:0px;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,.8);
    z-index:2;
}
.popup .jendela{
    position:relative;
    text-align:center;
    left:50%;
    top:50%;
    width:50%;
    background-color:#ffffff;
    transform:translate(-50%,-50%);
    min-width:50%;
    min-height:50%;
    padding:10px;
}
.closeme{
    position:absolute;
    background-color:#ffffff;
    top:30px;
    right:10px;
    color:red;
    padding:10px;
    font-size:15px;
    font-weight:bold;
    cursor:pointer;
    margin-top:-10px;
    z-index:999;
}

@media only screen and (max-width: 768px) {

#login{
    position:relative;
    width:calc(100% - 80px);
}
#content{
    position:relative;
    width:100%;
}