
body {
    margin: 0;
}
#MainBase {
    width: 100vw;
    height: 100vh;
    background: pink;
    display : flex ;
    flex-direction : column;
}


.login-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.login-container > .header {
    max-height: 10rem;
    display: flex;
    padding: 16px;
}

.login-container > .header > .title-container {
    width: 100%;
    text-align: center;
}
.login-container > .header > .title-container > h1 {
    font-size: 2.4rem;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: whitesmoke;
    text-transform: uppercase;
    user-select: none;
}

.login-container > .section {
    flex: 1;
    min-height: 30rem;
    padding: 16px;
}
.login-container > .section > .wrapper {
    width: 80%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.login-container > .section > .wrapper > .card {
    background-color: #f1f1f1;
    max-width: 420px;
    width: 100%;
    height: auto;
    box-shadow: 0 2px 2px #2222220b;
    padding: 16px;
    display: flex;
    flex-direction: column;
}
.login-container > .section > .wrapper > .card > header {
    user-select: none;
    text-align: center;
    border-bottom: 2px solid #009bff5a;
}
.login-container > .section > .wrapper > .card > header > h2 {
    font-size: 2.4rem;
    letter-spacing: 1px;
    font-family: 'Roboto', 'Noto Sans KR', sans-serif;
    font-weight: 900;
    color: black;
}
.login-container > .section > .wrapper > .card > section {
    padding: 16px 4px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}
.login-container > .section > .wrapper > .card > section > .form-group {
    display: flex;
    flex-direction: column;
}
.login-container > .section > .wrapper > .card > section > .form-group > label {
    font-size: 14px;
    font-weight: 700;
    color : #444444;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    user-select: none;
    margin-bottom: 0;
}

.login-container > .section > .wrapper > .card > section > .form-group > button {
    width: 100%;
    margin: 0;
    background-color: #2178ff;
    border-color:#2178ff;
    transform: scale(1);
    transition: all 300ms ease-in-out;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight:600;
}
.login-container > .section > .wrapper > .card > section > .form-group > button:hover {
    background-color:#2766ec;
    border-color: #2766ec;
    transform: scale(1.005);
}
.login-container > .section > .wrapper > .card > section > .form-group > input {
    border: none;
    outline: none;
    border-bottom: 2px solid #222222;
    border-radius: 0;
    padding-left: 0;
    font-size: 14px;
    letter-spacing: 1px;
    background-color: whitesmoke;
    color: black;
    box-shadow: none;
}

.login-container > .section > .wrapper > .card > section > .form-group > input::placeholder {
    font-size: 12px;
    color: gray;
    font-family: 'Roboto', sans-serif;
}

.login-container > .section > .wrapper > .card > section > .form-group > input:focus{
    outline: none;
    border-bottom-color: #2178ff;

}
.login-container > .footer {
    flex-basis: 16rem;
    display: flex;
    flex-direction: column;
    padding: 16px;
    max-height: 12rem;
}

.login-container > .footer > .wrapper {
    padding: 16px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.login-container > .footer > .wrapper > .logo {
    width: 100%;
    height: 24px;
}
.login-container > .footer > .wrapper > .logo > img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.login-container > .footer > .wrapper > .mode {
    text-align: center;
}
.login-container > .footer > .wrapper > .mode > a {
    font-size: 11px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: white;
    background-color: #2767ec;
    padding: 2px 6px;
    border-radius: 10px;
    box-shadow: 0 2px 2px #2222223a;
    letter-spacing: 0.5px;
    transform: scale(1);
    transition: all 300ms linear;
}
.login-container > .footer > .wrapper > .mode > a:hover {
    text-decoration: none;
    transform: scale(1.005);
    background-color: whitesmoke;
    color: black;
}
.login-container > .footer > .wrapper > .copyright {
    font-size: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    color : #999999;
}
.login-container > .footer > .wrapper > .copyright > address {
    text-align: center;
}