html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
main,
fieldset,
ul,
label,
legend,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
dl,
dd,
dt,
article,
aside,
footer,
header,
menu,
nav,
p,
section,
button {
    margin: 0;
    padding: 0;
    border: 0 none;
    font-size: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-image: url('../assets/img/background.png');
    background-color: #aaa;
}

form {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    background-color: #eee;
    border-radius: 6px;
    box-shadow: 0 0 10px 1px #aaa;
    width: 460px;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    z-index: 1;
    margin: 0 auto;
    position: relative;
    padding: 44px 0px;
}

:host {
    display: flex;
    flex-direction: column;
    background-image: url('~/assets/img/background.png');
    background-color: #aaa;
    width: 100%;
    height: 100%;
    position: relative;
    align-items: center;
}

img.login_image {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin-left: auto;
    margin-right: auto;
}

img.logo_image {
    margin-bottom: 2.8em;
    margin-top: 2.8em;
}

form input {
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 12px;
    color: #777;
    width: 320px;
    margin-bottom: 20px;

    &::placeholder {
        color: #bbb;
    }
}

h1 {
    color: #777;
    font-size: 29px;
    font-weight: 400;
}

h3 {
    color: #999;
    font-size: 16px;
    font-weight: 400;
    margin: 20px 0 15px 0;
}

.submit_button {
    margin-right: 0;
    margin-top: 14px;
    width: 320px;
    background-color: rgb(219, 97, 48);
    padding: 0 0.8em;
    min-width: 100px;
    height: 34px;
    color: white;
    font-weight: 500;
    border-radius: 3px;
    font-size: 14px;
}

.logo_wrapper {
    text-align: center;
}

.logo_image {
    margin-bottom: 2.8em;
    margin-top: 2.8em;
    display: inline-block;
}

.error-message {
    background-color: #c7443d;
    text-align: center;
    color: white;
    font-size: 13px;
    width: 310px;
    padding: 5px;
    margin-bottom: 15px;
    display: none;

    & /deep/ i.icon.icon-error {
        color: white;
        font-size: 22px;
    }
}

.icon.icon-error {
    display: inline-block;
    background: #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    text-align: center;
    font-style: normal;
    font-size: 13px;
    font-weight: 100;
    vertical-align: middle;
    line-height: 16px;
}

.icon.icon-error::before {
    color: #c7443d;
    content: '\2715';
    display: block;
}

input[type='button']:disabled {
    background-color: rgb(250, 188, 163);
    cursor: default;
}
