#wrap {
    width: 100%;
    padding: 200px 0;
    /* height: 100vh; */
}
#main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
#main > .main {
    width: 520px;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 4px 64px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
    overflow: hidden;
}
#main > .main > .header {
    padding: 30px 50px;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
    background-color: #0d3da5;
}
/* 로고 SVG 크기 (원본 188x69, 비율 유지) */
#main > .main > .header img {
    display: block;
    height: 32px;
    width: auto;
}
#main > .main > .content {
    width: 100%;
    padding: 40px 32px 32px;
}
#main > .main > .content > .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0em;
    color: #222;
}
#main > .main > .content > .form {
    width: 100%;
}
#main > .main > .content > .form > form .row.title {
    margin: 40px 0 20px;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    letter-spacing: 0em;
}
#main > .main > .content > .form > form .row > .label {
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0em;
}
#main > .main > .content > .form > form input[type='text'],
#main > .main > .content > .form > form input[type='password'] {
    width: 100%;
    height: 48px;
    margin-bottom: 16px;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 400;
    color: #222;
    border-radius: 8px;
    border: solid 1px #cccdd1;
    background-color: #fff;
}
#main > .main > .content > .form > form input::placeholder,
#main > .main > .content > .form > form input::-moz-placeholder,
#main > .main > .content > .form > form input::-webkit-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
    color: #a3a5aa;
}
#main > .main > .content > .form > form button {
    width: 100%;
    height: 64px;
    margin-top: 16px;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    border: none;
    border-radius: 8px;
    background-color: #1654dc;
}
#main > .login {
    margin-top: 32px;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: center;
    text-decoration: underline;
}
