  <style>
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
        background-color: #ffffff;
        color: #000000;
    }

    /* 상단 메뉴바 */
    .navbar {
        background-color: #ff6347;
        padding: 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        padding: 15px 20px;
        font-size: 20px;
        font-weight: bold;
        color: #ffffff;
    }

    .nav-menu {
        display: flex;
        list-style: none;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .auth-menu {
        display: flex;
        list-style: none;
        margin-left: auto;
    }

    .nav-menu li {
        border-left: 1px solid rgba(255,255,255,0.3);
    }

    .nav-menu a {
        display: block;
        padding: 15px 25px;
        color: #ffffff;
        text-decoration: none;
        transition: background-color 0.2s;
    }

    .nav-menu a:hover {
        background-color: rgba(0,0,0,0.1);
    }

    .nav-menu a.active {
        background-color: rgba(0,0,0,0.15);
    }

    .auth-menu li {
        border-left: 1px solid rgba(255,255,255,0.3);
    }

    .auth-menu a {
        display: block;
        padding: 15px 20px;
        color: #ffffff;
        text-decoration: none;
        transition: background-color 0.2s;
        font-size: 14px;
    }

    .auth-menu a:hover {
        background-color: rgba(0,0,0,0.1);
    }

    /* 메인 컨테이너 */
    .container {
        max-width: 500px;
        margin: 50px auto;
        padding: 20px;
    }

    .register-box {
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        padding: 40px;
    }

    .register-title {
        font-size: 24px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 30px;
        color: #000000;
    }

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

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        font-weight: bold;
        color: #000000;
    }

    .form-group input[type="text"],
    .form-group input[type="password"],
    .form-group input[type="date"] {
        width: 100%;
        padding: 10px;
        border: 1px solid #e0e0e0;
        font-size: 14px;
        transition: border-color 0.2s;
    }

    .form-group input:focus {
        outline: none;
        border-color: #ff6347;
    }

    .radio-group {
        display: flex;
        gap: 20px;
        margin-top: 8px;
    }

    .radio-group label {
        display: flex;
        align-items: center;
        gap: 5px;
        font-weight: normal;
        cursor: pointer;
    }

    .radio-group input[type="radio"] {
        cursor: pointer;
    }

    .button-group {
        display: flex;
        gap: 10px;
        margin-top: 30px;
    }

    .btn {
        flex: 1;
        padding: 12px;
        border: none;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.2s;
    }

    .btn-primary {
        background-color: #ff6347;
        color: #ffffff;
    }

    .btn-primary:hover {
        background-color: #ff4500;
    }

    .btn-secondary {
        background-color: #ffffff;
        color: #000000;
        border: 1px solid #e0e0e0;
    }

    .btn-secondary:hover {
        background-color: #f8f8f8;
    }

    .form-footer {
        text-align: center;
        margin-top: 20px;
        font-size: 14px;
        color: #666;
    }

    .form-footer a {
        color: #ff6347;
        text-decoration: none;
    }

    .form-footer a:hover {
        text-decoration: underline;
    }

    .required {
        color: #ff6347;
    }