html, body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    height: 100%;
    width: 100%;
}

*, * :before, *:after {
    box-sizing: border-box;
}

.body-container {
    position: relative;
    top: 10%;
    height: 90%;
    width: 100%;
    padding: 5% 10%;
}

.sidebar {
    display: none;
}

h2 {
    color: #67b4eb;
    text-align: center;
    height: 2%;
}

form {
    border: 1px solid #e3f3ff;
    padding: 5px;
    width: 100%;
    overflow: hidden;
    height: 98%;
    overflow-y: scroll;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
}

/* Hide scrollbar for Chrome, Safari and Opera */

form::-webkit-scrollbar {
    display: none;
}

label {
    color: #707070;
    font-size: 0.8rem;
}

input, select {
    border: 1px solid #eaeaea;
    border-radius: 7px;
}

input {
    padding: 12px 20px;
    color: #e3e3e3;
}

input:focus, input:active {
    border: 1px solid #b7b7b7;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #e3e3e3;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #e3e3e3;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #e3e3e3;
}

select {
    padding: 12px 20px;
    color: #b5b5b5;
    background-color: #fff;
    outline: none;
    width: 100%;
    appearance: none;
}

#select-image__container {
    align-self: flex-end;
}

form>div {
    margin: 9px;
}

div>label {
    display: inline-block;
    margin-bottom: 5px;
}

#select-image {
    align-self: baseline;
}

input {
    outline: none;
}

.dropdown-holder {
    width: 100%;
    display: flex;
    border: 1px solid #f1f1f1;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-radius: 7px;
}

select {
    border: none;
    outline: none;
    width: 100%;
}

.dropdown-holder>img {
    position: absolute;
    right: 10%;
    height: 8px;
    width: 8px;
}

.dropdown-holder select:focus~img {
    display: none;
}

.dropdown-container {
    min-width: 100px;
}

.break {
    width: 100%;
    margin: 0;
}

.button-a {
    margin: 8px;
    text-decoration: none;
    width: 100%;
}

button {
    display: flex;
    justify-items: center;
    align-items: center;
    border: none;
    outline: none;
    margin-top: 12px;
    padding: 15px 15px;
    width: 100%;
    justify-content: center;
    align-self: center;
    border-radius: 7px;
}

#save {
    color: #fff;
    background-color: #1d90e2;
}

#save:hover, #save:active {
    background-color: #3eb2f3;
}

#go {
    color: #78bdee;
    border: 2px solid #62b2ea;
    background-color: #fff;
}

#go:hover, #go:active {
    background-color: #f5f5f5;
}

@media screen and (min-width: 600px) {
    .button-a {
        width: 40%;
    }
}

@media screen and (min-width: 850px) {
    .body-container {
        display: flex;
    }
    h2 {
        display: none;
    }
    .sidebar {
        display: unset;
        height: 80%;
        margin-right: 25px;
        width: 45%;
        background-color: #f5f5f5;
        overflow: hidden;
        border-radius: 4px;
    }
    .sidebar ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .sidebar ul li {
        border-bottom: 1px solid #d2eafc;
        font-size: 0.8rem;
        color: #c8c8c8;
        font-weight: bold;
    }
    .sidebar ul li a {
        text-decoration: none;
        color: #c8c8c8;
        padding: 10px;
        width: 100%;
        display: block;
    }
    #biodata {
        background-color: #1d90e2;
        color: #fff;
    }
    .button-a {
        width: 40%;
    }
}

@media screen and (min-width: 880px) {
    .body-container {
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
    }
    .sidebar {
        width: 20%;
    }
    form {
        width: 57%;
    }
    .button-a {
        width: 28%;
    }
}