* {
	position: relative;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}
html {
	scroll-behavior: smooth;
}
body {
	overflow-x: hidden;
    padding: 20px;
    background-color: #f4f1f1;
}
a {text-decoration: none;}
header {
    width: 100%;
    display: flex;
    align-items: flex-start;
}
.logoname {
    margin-left: 5px;
}
.logoname h1 {font-size: 1.2em;}
.logoname p {font-size: 10px;}
main {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 25px;
}
.inputdata {
    width: 100%;
    border: 1px solid #6b6b6b;
    margin-top: 25px;
    padding: 30px 10px 20px 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
}
.inputdata.col {
    flex-direction: column;
}
.fxdt {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.titledt {
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    background: #fff;
    border: 1px solid #6b6b6b;
    border-radius: 5px;
    position: absolute;
    top: -15px;
}
.titledt.long {
    width: auto;
    padding: 5px 15px;
}
.nomorbenang {
    width: 48%;
    display: flex;
    flex-direction: column;
    font-size: 12px;
}
.nomorbenang p {margin-bottom: 5px; font-weight: bold;}
.labelform {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 5px;
}
.labelform span {
    width: 50px;
}
.labelform input {
    flex: 1;
    width: 50px;
    border: 1px solid #6b6b6b;
    padding: 3px;
}
.minitext {font-size: 9px;}
section {
    margin-top: 40px;
}
.titlegr {
    width: 100%;
    font-weight: bold;
    margin-bottom: 10px;
}
.mtrball {
    margin-top: 30px;
}
.notif {
    display: none;
    margin-top: 10px;
    font-size: 11px;
    color: red;
    margin-left: 10px;
}
footer {
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 10px;
    margin-top: 50px;
}
.btnreset {
    width: 60px;
    border-radius: 5px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 0;
    cursor: pointer;
    margin-top: 15px;
    font-size: 11px;
    background: #6b6b6b;
}
.btnreset:hover {
    background-color: #433f3f;
}