body > form > div:nth-child(2) {
    position:fixed;
    display: flex;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #222222;
    background-image: url('../image/login_bg.png');
    padding: 0px;
    align-items: center;
    background-position: top;
    background-size: cover;
    justify-content: space-around;
    padding: 0px 100px 0px 50px;
}

body > form > div:nth-child(1) {
    position: absolute;
    z-index: 100;
    background-color: #0C1B42;
    top: 0;
    left: 0;
    width: 100%;
    height: 54px;
    border-bottom: #06E5F9 solid 1px;
}

body > form > div:nth-child(1) > img {
    width: 180px;
    height: 36px;
    margin: 11px 0px 4px 100px;
}

body > form > div:nth-child(2) > p {
    font-size: 35px;
    color: #fff;
    font-weight: normal;
    text-shadow: 2px 2px 3px 1px rgba(0, 0, 0, 0.4);
    width: 300px;
    line-height: 45px;
    margin: 0px 0px 0px 0px;
}

body > form > div:nth-child(2) > div {
    display: flex;
    flex-direction: column;
    padding: 20px;
    /*background-color: rgba(255, 255, 255, 0.8);*/
    background-color: #e6e8ec;
    width: 300px;
    box-shadow: 2px 2px 3px 1px rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    box-sizing: border-box;
}

body > form > div:nth-child(2) > div > p:nth-child(1) {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

body > form > div:nth-child(2) > div > p:nth-child(2) {
    font-size: 14px;
    text-align: left;
    margin-left: 4px;
    margin-bottom: 2px;
}

body > form > div:nth-child(2) > div > p:nth-child(4) {
    font-size: 14px;
    text-align: left;
    margin-left: 4px;
    margin-bottom: 2px;
}

body > form > div:nth-child(2) > div > input {
    width: 100%;
    border: #bbb solid 1px;
    border-radius: 7px;
    font-size: 16px;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 15px;
}

body > form > div:nth-child(2) > div > a:nth-child(6) {
    background-color: #098046;
    border-radius: 7px;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    width: fit-content;
    margin-bottom: 20px;
    margin-left: 2px;
}

body > form > div:nth-child(2) > div > a:nth-child(7) {
    color:rgb(55, 94, 165);
    font-size: 15px;
    text-decoration: underline;
    margin-left: 4px;
}