        * {
            box-sizing: border-box;
        }

        html,
        body {
            height: 100%;
            margin: 0;
            font-family: 'Pretendard', sans-serif;
        }

        .container-fluid {
            height: 100%;
        }

        .image-column {
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-container {
            width: 100%;
            height: calc(100% - 30px);
            margin: 15px;
            background: url('../ico/background.png') no-repeat center center / cover;
            border-radius: 20px;
        }

        .form-column {
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .form-wrapper {
            width: 100%;
            max-width: 420px;
            padding: 20px;
        }

        .title {
            font-size: 38px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 8px;
            color: #000;
        }

        .subtitle {
            text-align: center;
            color: #888;
            font-size: 15px;
            margin-bottom: 40px;
        }

        .form-control {
            padding: 18px 20px;
            font-size: 16px;
            background: #fafafa;
            border: 1px solid #ddd;
            border-radius: 8px;
        }

        .form-control:focus {
            border-color: #999;
            box-shadow: none;
            background: #fff;
        }

        .btn-submit {
            width: 100%;
            padding: 18px;
            background: #000;
            color: #fff;
            font-size: 17px;
            font-weight: 400;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            margin: 30px 0 40px;
        }

        .btn-submit:hover {
            background: #111;
        }

        .switch-text {
            text-align: center;
            color: #888;
            font-size: 15px;
        }

        .switch-text a {
            color: #000;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
        }

        .switch-text a:hover {
            text-decoration: underline;
        }

        #confirmPwRow {
            display: none;
        }

        .honeypot {
            position: absolute;
            left: -9999px;
            height: 0;
            overflow: hidden;
        }

        @media (max-width: 991.98px) {
            .image-column {
                display: none;
            }

            .form-column {
                min-height: 100vh;
            }
        }