body{
    margin: 0;
    font-family: Roboto,Helvetica Neue,sans-serif;
    font-size: 15px;
    font-weight: 400;
}

.header{
    height: 56px;
    background: #f5f5f5;
}

.header img {
    float: left;
    margin: 12px 0 0 80px;
    width: 130px;
    height: 31px;
}

form{
    display: block;
    width: 300px;
    height: 190px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -95px;
    margin-left: -150px;
}

form input, button{
    margin-top: 15px;
}

button{
    display: inline-block;
    color: rgba(0,0,0,.87);
    background-color: #fff;
    box-sizing: border-box;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    outline: none;
    border: none;
    -webkit-tap-highlight-color: transparent;
    white-space: nowrap;
    text-decoration: none;
    vertical-align: baseline;
    text-align: center;
    min-width: 54px;
    line-height: 32px;
    padding: 0 14px;
    border-radius: 4px;
    overflow: visible;
    transform: translate3d(0, 0, 0);
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0, 0, 0, 0.12);
    transition: background 400ms cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

button:disabled{
    background-color: rgba(0,0,0,.12);
    color: rgba(0,0,0,.26);
}

button:not([disabled]):hover {
    background-color: rgba(210, 210, 210, 0.96);
    color: rgba(44, 65, 164, 0.96);
    transition: 0.3s;
}

label{
    cursor: pointer;
}

input[type='text']{
    border: 1px solid #cccccc;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -khtml-border-radius: 4px;
    background: #ffffff !important;
    outline: none;
    height: 26px;
    width: 185px;
    font-size: 14px;
    padding-left: 2px;
}

input[type=text]:focus {
    color: #000000;
}

input.focus{
    border-color: #0078A8 !important;
}

#reason{
    margin-left: 48px;
}

#serialNumber{
    margin-left: 4px;
}

#file-name{
    display: inline-block;
    width: 150px;
    margin: 5px 0 0 8px;
}

#send{
    width: 300px;
}

#container-progress-bar{
    margin-top: 10px;
}

progress{
    width: 230px;
}

#popup-notification{
    position: absolute;
    margin-top: 10px;
    height: 45px;
    line-height: 45px;
    padding-left: 60px;
    width: 300px;
    border-radius: 5px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.74);
    color: #5fc358;
}

#error{
    text-align: center;
    position: absolute;
    margin-top: 10px;
    height: 45px;
    line-height: 45px;
    width: 300px;
    border-radius: 5px;
    box-sizing: border-box;
    border: 1px solid red;
    color: red;
}

#error-popup{
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 16px;
    padding: 18px;
    width: 430px;
    border-radius: 5px;
    box-sizing: border-box;
    line-height: 1.4;
    background: rgba(216, 11, 11, 0.79);
    color: white;
}

#error-close-button{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 10px;
}
#error-close-button button{
    line-height: 20px;
    min-width: 20px;
    padding: 0;
    margin: 0;
}
