*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 16px;
    width: 100%;
    height: 100%;
}

body{
    position: relative;
    width: 100%;
    height: 100%;
    background-color: white;
}

button,input,hr{
    border: none;
}

table{
    border-collapse: collapse;
}

button{
    cursor: pointer;
    background-color: orange;
    color: white;
}

input[type=text]{
    border-bottom: solid 1px orange;
}

input[type=text][disabled=disabled]{
    border-bottom: solid 1px orange;
    background-color: transparent;
    opacity: 1;
    color: #666666;
}

input[type=password]{
    border-bottom: solid 1px orange;
}

input[type=password][disabled=disabled]{
    border-bottom: solid 1px orange;
    background-color: transparent;
    opacity: 1;
    color: #666666;
}

input[type=file]{
    border-bottom: solid 1px orange;
}

input[type=number]{
    border-bottom: solid 1px orange;
}

input[type=datetime-local]{
    border-bottom: solid 1px orange;
    background-color: transparent;
    opacity: 1;
    color: #666666;
}

textarea{
    border: 1px solid orange;
}

select{
    background-color: transparent;
    border-top: none;
    border-right: none;
    border-bottom: solid 1px orange;
    border-left: none;
}

ul{
    list-style: none;
}

div{
    margin: 0 auto;
}

a:link {
    text-decoration: none;
}
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:active {
    text-decoration: none;
}