* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #f5f1eb;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

form {
    width: 100%;
    display: flex;
    justify-content: center;
}

.login-wrap {
    width: 1100px;
    height: 650px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 20px 60px rgba(80, 58, 40, 0.14);
}

.login-left {
    width: 58%;
    height: 100%;
}

.login-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.login-right {
    width: 42%;
    height: 100%;
    background: #fcfcfc;
    padding: 56px 54px;
    display: flex;
    align-items: center;
}

.login-table {
    width: 100%;
}

.login-title {
    margin: 0 0 36px;
    font-size: 36px;
    font-weight: 700;
    color: #5a4636;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #5a4636;
    font-size: 16px;
    font-weight: 700;
}

.login-table input[name="login_id"],
.login-table input[name="password"] {
    width: 100%;
    height: 52px;
    border: 1px solid #ddd6ce;
    border-radius: 10px;
    padding: 0 44px 0 15px;
    background: #fff;
    font-size: 16px;
    outline: none;
}

.login-table input[name="login_id"]:focus,
.login-table input[name="password"]:focus {
    border-color: #8a7565;
}

.pwd-wrap {
    position: relative;
}

.toggle {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.toggle img {
    width: 22px;
    height: 22px;
    display: block;
}

#unvisual {
    display: none;
}

.idpwd-area {
    margin: -4px 0 18px;
    text-align: right;
    font-size: 12px;
}

.idpwd-area span {
    color: #8a7565;
}

.sub-btn,
.regi-btn {
    border: none;
    background: none;
    color: #8a7565;
    cursor: pointer;
    font-size: 13px;
}

.login-btn {
    display: block;
    width: 80%;
    height: 56px;
    margin: 0 auto;
    border: none;
    border-radius: 10px;
    background: #6b4b35;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.login-btn:hover {
    background: #5a3e28;
}

.line-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 18px 0 14px;
}

.line {
    flex: 1;
    height: 1px;
    background: #e1dfdf;
}

.line-area span {
    font-size: 12px;
    color: #c7c3c3;
}

.social-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    position: relative;
    width: 100%;
    height: 44px;
    border: 1px solid #e5e5e5;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
}

.social-btn:hover {
    background: #f8f8f8;
}

.social-btn img {
    position: absolute;
    left: 54px;
    width: 32px;
    height: 32px;
}

.sub-btn-area {
    margin-top: 24px;
    text-align: center;
}

.sub-btn-area span {
    font-size: 15px;
    color: #747171;
}

.regi-btn {
    margin-left: 4px;
    color: #99785f;
    font-size: 15px;
}
