* {
  box-sizing: border-box;
}

input[type=text], select, textarea, file {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  font-size: 30px;
  text-align: left;
  color: blue;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 9px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
  font-size: 25px;
  margin-top:10px;
  width:100%
}

input[type=submit]:hover {
  background-color: #45a049;
  margin: 0px;
}

.container {
  border-radius: 5px;
  background-color: white;
  padding: 5px;
}

.judul{
  text-align:center;
  font-size: 30px;
  margin: 0px;
}

.avatar {
    width: 60px;
    border-radius: 20%;
    padding-left:5px;
}

.col-10 {
  float: left;
  width: 10%;
  margin-top: 6px;
  font-size: 20px;
}

.col-20 {
  float: left;
  width: 20%;
  padding: 10px;
  font-size: 20px;
}
.col-45 {
  float: left;
  width: 45%;
  margin: 6px 6px 6px 6px;
  font-size: 20px;
}

.col-80 {
  float: left;
  width: 80%;
  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: 600px) {
  .col-10, .col-80, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
  
  .avatar{width:30px;}
  .judul{font-size:18px;}
  input[type=text], select, textarea, file {font-size:12px;padding:5px;}
  input[type=submit] {padding:5px;font-size:12px;}
}
