.login-container {
    margin: 0;
    padding: 0;
    height: 100vh;
    /* 브라우저 전체 높이 */
    display: flex;
    justify-content: center;
    /* 가로 중앙 */
    align-items: center;
    /* 세로 중앙 */
    background-color: #f5f5f5;
    /* 선택사항: 배경색 */


}

.login-box {
    width: 410px;
    height: 380px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.login-title {
    margin-left: 20px;
    margin-top: 10px;
    font-size: 25px;
}

.login-form {
    margin-top: 25px;
    margin-left: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: block;
    /* /isplay: flex; */
}

.form-group label {
    font-size: 17px;
    margin-right: 10px;
    margin-bottom: 5px;
}

.form-group input {
    border: 1px solid #ccc;
    border-radius: 0.4em;
    width: 360px;
    height: 40px;
    padding-left: 5px;
}


.join-submit-button {
    /* position: absolute; */
    /*
    bottom: 20px; */
    /* 하단 여백 */
    /* left: 20px; */
    width: 360px;
    height: 40px;
    margin-top: 40px;
}

.login-box {
    position: relative;
    /* absolute 기준 */
}

.join-submit-button button {
    border-radius: 0.4em;
    background-color: rgb(165, 221, 132);
    display: flex;
    width: 360px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.login-line {
    margin-left: -20px;
    margin-bottom: auto;
}

.find-form {
    display: flex;
    justify-content: space-between;
    /* background-color: #f3f3d8; */
    margin-left: -20px;
    height: 47px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.left-box {
    margin-top: 12px;
    margin-left: 10px;
}

.left-box a {
    margin-right: 10px;

}

.right-box a {
    display: flex;
    /* background-color: #b85a5a; */
    border: 3px solid rgb(165, 221, 132);
    width: 80px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    height: 30px;
}


.left-box a,
.right-box a {
    color: #888;
    text-decoration: none;
}

.right-box {
    margin-top: 10px;
    margin-right: 10px;
}