body {
    background-color:rgb(242, 252, 245);
} 

input[type=text], [type=date], [type=password], select, textarea {
    width: 100%;
    padding: 1px 0px 1px 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
    font-family: Roboto, Helvetica, sans-serif;        
    font-size: 14px;   
}

input[type=radio]{
    font-family: Roboto, Helvetica, sans-serif;   
    font-size: 24px;   
}

label {
   padding: 1px 0px 2px 5px;
   font-family: Roboto, Helvetica, sans-serif;
   font-size: 14px;
   display: inline-block;
   margin-top: 5px;
}

input[type=submit] {
    background-color: #04AA6D;
    color: white;
    padding: 1px 1px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    float: right;
}

input[type=submit]:hover {
    background-color: #45a049;
}

.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 5px 2px 5px 2px;
}

.container-fluid {
    width:98%;
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 5px 2px 5px 2px;
}


/* Untuk kelas modal ... */
.modal-header {
    background-color: #3CB371;
}

.modal-body {
    background-color:rgb(242, 252, 245);
}

.modal-footer {
    background-color:rgb(214, 252, 225);;
}

/*
.col-5 {
    float: left;
    width: 5%;
    padding: 2px;
 }

.col-10 {
   float: left;
   width: 10%;
   padding: 2px;
}

.col-15 {
   float: left;
   width: 15%;
   padding: 2px;
}
.col-20 {
    float: left;
    width: 20%;
    padding: 2px;
 }
    */

.column {
   float: left;
   width: 20%;
   padding: 2px;
 }
/*
.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}

.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}
*/
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

 /* Responsive layout - when the screen is less than 600px wide, 
 make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 725px) {
    .col-5, .col-10, .col-25, .col-75, .column, input[type=text], input[type=date], input[type=password], input[type=select], input[type=submit] {
       width: 100%;
       margin-top: 0;
  }     
}