input, select, button {
    background-color: #525252;
    border: 0px;
    width: 100%;
    display: inline;
    transition-duration: 0.4s;
}

input:hover, select:hover {
    background-color: #606060;
}

input:focus {
    outline: none;
    background-color: #606060;
}

button {
    font-weight: bold;
}

button:hover {
    background-color: #606060;
}

button:focus {
    background-color: #525252;
    outline: none;
}

label {
    font-weight: bold;
    font-size: 14px;
}

.section {
    background-color: #414141;
    padding: 10px;
    color: white;
    width: 90%;
    margin-top: 10%;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.ui-item {
    width: 100%
}
  
.ui-container {
  display: flex;
  flex-wrap: wrap;
}

.ui-container>div {
  flex: 0 50%;
  padding: 5px;
}