.register-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.register-card {
    background: #ffffff;
    border: 1px solid #d7dde7;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    padding: 30px;
}

.register-title {
    font-size: 2rem;
    font-weight: 900;
    color: #17335c;
    margin-bottom: 10px;
    text-align: left;
}

.register-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 26px;
    text-align: left;
}

.register-card .form-label {
    font-weight: 800;
    color: #24324a;
    margin-bottom: 8px;
}

.register-card .form-control,
.register-card .form-select {
    min-height: 52px;
    border-radius: 12px;
    border: 1px solid #d5d9e1;
    background: #ffffff;
    color: #1f2937;
    font-size: 0.98rem;
}

.register-card .form-control:focus,
.register-card .form-select:focus {
    border-color: #1d4f91;
    box-shadow: 0 0 0 3px rgba(29, 79, 145, 0.10);
}

.form-check-input {
    border-color: #c9d2df;
}

.form-check-input:checked {
    background-color: #f2c230;
    border-color: #f2c230;
}

.form-check-label {
    color: #4f5f74;
    font-weight: 600;
}

.register-legal-box {
    margin-top: 22px;
    margin-bottom: 22px;
    padding: 18px 18px 16px;
    background: #f8fafc;
    border: 1px solid #d8e0ea;
    border-radius: 14px;
}

.register-legal-title {
    font-size: 0.98rem;
    font-weight: 900;
    color: #17335c;
    margin-bottom: 10px;
}

.register-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.94rem;
    color: #4f5f74;
    line-height: 1.65;
}

.register-checkbox-row input {
    margin-top: 3px;
    flex: 0 0 auto;
}

.register-checkbox-row span {
    display: block;
}

.register-checkbox-row a {
    color: #1f5cae;
    font-weight: 700;
    text-decoration: none;
}

.register-checkbox-row a:hover {
    text-decoration: underline;
}

.register-legal-note {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #7b8797;
    line-height: 1.5;
}

.register-submit-btn,
.register-card .btn-main,
.register-card button[type="submit"] {
    width: 100%;
    min-height: 52px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(180deg, #ef4444 0%, #c81e1e 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
}

.register-submit-btn:hover,
.register-card .btn-main:hover,
.register-card button[type="submit"]:hover {
    background: linear-gradient(180deg, #d83939 0%, #b51b1b 100%);
    color: #ffffff;
}

.register-bottom-text {
    margin-top: 18px;
    text-align: center;
    color: #64748b;
    font-size: 0.96rem;
}

.register-bottom-text a {
    color: #1f5cae;
    font-weight: 700;
    text-decoration: none;
}

.register-bottom-text a:hover {
    text-decoration: underline;
}

.register-help-text,
.register-note {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .register-card {
        padding: 20px;
        border-radius: 16px;
    }

    .register-title {
        font-size: 1.65rem;
    }

    .register-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .register-checkbox-row {
        font-size: 0.91rem;
    }

    .register-legal-box {
        padding: 16px;
    }
}