/* login.css */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'NanumGothic', sans-serif;
    background-color: #FFFFFF;
    overflow: hidden;
}

.login-container {
    display: flex;
    height: 100vh;
}

.login-left {
    flex-basis: 40%;
    display: flex;
    flex-direction: column;
    padding: 50px 30px;
    box-sizing: border-box;
    justify-content: space-around; /* Distribute space */
    align-items: center; /* Center the content horizontally */
}

.login-header .title {
    font-size: 48px;
    font-weight: 800;
    color: #215F9A;
    text-align: center;
    margin-bottom: 40px;
}

.login-form-container {
    width: 90%;
    max-width: 850px; /* Increased max-width to accommodate button inside */
    height: auto;
    border: 1px solid #676767;
    border-radius: 10px;
    padding: 20px;
    padding-right: 240px; /* Space for the button */
    position: relative;
}

.login-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.login-form-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
}

.form-group label {
    font-size: 22px;
    font-weight: 800;
    color: #000000;
    width: 120px;
    margin-right: 10px;
}

.form-group input {
    width: calc(100% - 130px);
    height: 60px;
    border: 1px solid #939393;
    font-size: 20px;
    padding: 0 15px;
}

.form-options {
    margin-left: 130px;
    display: flex;
    align-items: center;
}

.form-options input[type="checkbox"] {
    width: 25px;
    height: 25px;
    border: 1px solid #939393;
    border-radius: 8px;
    margin-right: 15px;
    appearance: none;
    background-color: white;
    position: relative;
}

.form-options input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 15px;
    background-image: url('/resources/vdtp/images/main/icon_check.svg');
    background-size: contain;
    background-repeat: no-repeat;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-options label {
    font-size: 20px;
    color: #404040;
}

.login-button {
    position: absolute;
    right: 20px; /* Position inside the container */
    top: 20px; /* Position inside the container */
    width: 200px;
    height: calc(100% - 40px); /* Fill height with padding */
    background-color: #0C4FA8;
    color: white;
    font-size: 22px;
    font-weight: 800;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-button:hover {
    box-shadow: 10px 10px 4px 0px rgba(0, 0, 0, 0.25);
}

.login-footer {
    width: 100%;
    text-align: center;
}

.login-footer img {
    width: 50%;
    max-width: 350px;
    display: block;
    margin: 0 auto;
}

.login-right {
    flex-basis: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}