﻿body {
    overflow: hidden;
}

#Wrap {
    position: relative;
    height: 100vh;
    box-sizing: border-box;
}

.wrapper {
    width: 100%;
    padding: 40px 100px;
}

.login_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    right: -69%;
    top: 0;
    z-index: -1;
    background-image: url(../../images/master/img_login_bg.svg);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 70%;
}

    .login_bg img {
        width: 100%;
    }

header {
    background-image: none;
    box-sizing: border-box;
}

    header .NERA_logo {
        width: 215px;
    }

        header .NERA_logo img {
            width: 100%;
        }

    header h1 {
        text-align: left;
        padding: 15px 0 20px 0; 
        font-size: 2rem;
    }

.login_content {
    width: 100%;
    height: calc(100vh - 156.16px - 98px);
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    box-sizing: border-box;
    position: relative;
}

.loginArea {
    width: calc(100% / 3);
    height: 100%;
    max-width: 420px;
    background-color: #D5E1D1;
    border-radius: 20px;
    box-shadow: 2px 5px 6px rgba(0, 0, 0, .2);
    padding: 30px 40px;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

    .loginArea label {
        margin: 0;
        font-size: 1.25rem;
    }

        .loginArea input[type="text"], .loginArea input[type="password"] {
            width: 100%;
            height: 40px;
            margin-top: 10px;
            margin-bottom: 20px;
        }

        .loginArea input[type="password"] {
            box-sizing: border-box;
            border-radius: 5px;
            border: 1px solid #799471;
            padding: 0.5rem 0.75rem;
        }

            .loginArea input[type="password"]:focus {
                border: 1px solid #101010;
            }

        .loginArea .MyInputField:last-child {
            margin-bottom: 10px;
        }

            input::placeholder {
                font-size: 1.125rem;
            }

.login_img {
    width: calc((100% / 3) * 2);
    height: 100%;
    background-image: url(../../images/master/img_login.svg);
    background-repeat: no-repeat;
    background-size: 85%;
    background-position: right;
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
}

#Footer {
    background-color: transparent;
    border-bottom: none;
    padding-top: 40px;
    padding-bottom: 0;
}
